File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -905,7 +905,7 @@ def get_davclient(
905905 testconfig = False ,
906906 environment : bool = True ,
907907 name : str = None ,
908- ** config_data
908+ ** config_data ,
909909) -> "DAVClient" :
910910 """
911911 This function will yield a DAVClient object. It will not try to
Original file line number Diff line number Diff line change 1313import os
1414import sys
1515
16- sys .path .insert (0 , ' ../..' ) # Adjust as needed
16+ sys .path .insert (0 , " ../.." ) # Adjust as needed
1717
1818# If extensions (or modules to document with autodoc) are in another directory,
1919# add these directories to sys.path here. If the directory is relative to the
Original file line number Diff line number Diff line change 1+ import os
2+ import unittest
3+
14import manuel .codeblock
25import manuel .doctest
36import manuel .testing
4- import unittest
5- import os
67
78m = manuel .codeblock .Manuel ()
89m += manuel .doctest .Manuel ()
910manueltest = manuel .testing .TestFactory (m )
1011
12+
1113class DocTests (unittest .TestCase ):
1214 def setUp (self ):
13- os .environ ['PYTHON_CALDAV_USE_TEST_SERVER' ] = '1'
14-
15- test_tutorial = manueltest ('../docs/source/tutorial.rst' )
16-
15+ os .environ ["PYTHON_CALDAV_USE_TEST_SERVER" ] = "1"
1716
17+ test_tutorial = manueltest ("../docs/source/tutorial.rst" )
You can’t perform that action at this time.
0 commit comments