@@ -778,7 +778,10 @@ def documented(self):
778778 return True
779779
780780
781- need_sphinx = pytest .mark .skipif (Sphinx is None , reason = "Sphinx is not installed" )
781+ need_sphinx = pytest .mark .skipif (
782+ Sphinx is None , reason = "Sphinx is not installed"
783+ )
784+
782785
783786@need_sphinx
784787def test_sphinx_autodocuments_cached_property ():
@@ -795,7 +798,9 @@ def test_sphinx_autodocuments_cached_property():
795798 outf .write (line )
796799 outdir = tmp_path .joinpath ("docs" )
797800 outdir .mkdir ()
798- app = Sphinx (tmp_path , here .parent .joinpath ("docs" ), outdir , tmp_path , "text" )
801+ app = Sphinx (
802+ tmp_path , here .parent .joinpath ("docs" ), outdir , tmp_path , "text"
803+ )
799804 app .build (force_all = True )
800805 with (
801806 outdir .joinpath ("index.txt" ).open ("r" ) as written ,
@@ -819,11 +824,13 @@ def test_sphinx_automembers_cached_property():
819824 outf .write (line )
820825 outdir = tmp_path .joinpath ("docs" )
821826 outdir .mkdir ()
822- app = Sphinx (tmp_path , here .parent .joinpath ("docs" ), outdir , tmp_path , "text" )
827+ app = Sphinx (
828+ tmp_path , here .parent .joinpath ("docs" ), outdir , tmp_path , "text"
829+ )
823830 app .build (force_all = True )
824831 with (
825832 outdir .joinpath ("index.txt" ).open ("r" ) as written ,
826- here .joinpath ("index.txt" ).open ("r" ) as good
833+ here .joinpath ("index.txt" ).open ("r" ) as good ,
827834 ):
828835 assert written .read () == good .read ()
829836
0 commit comments