Skip to content

Commit c1b04f7

Browse files
committed
style
1 parent 98a9459 commit c1b04f7

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

caldav/davclient.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import os
1414
import 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

tests/test_docs.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1+
import os
2+
import unittest
3+
14
import manuel.codeblock
25
import manuel.doctest
36
import manuel.testing
4-
import unittest
5-
import os
67

78
m = manuel.codeblock.Manuel()
89
m += manuel.doctest.Manuel()
910
manueltest = manuel.testing.TestFactory(m)
1011

12+
1113
class 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")

0 commit comments

Comments
 (0)