Skip to content

Commit e50afba

Browse files
committed
more bugfix
1 parent 4c15e7f commit e50afba

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

caldav/compatibility_hints.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
some more advanced way, but I don't want to overcomplicate things - I
1818
will try out the key-value-approach first.
1919
"""
20-
2120
## The lists below are specifying what tests should be skipped or
2221
## modified to accept non-conforming resultsets from the different
2322
## calendar servers. In addition there are some hacks in the library

caldav/davobject.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ def get_properties(
263263
* {proptag: value, ...}
264264
265265
"""
266-
from .collection import Principal ## late import to avoid cyclic dependencies
266+
from .collection import Principal ## late import to avoid cyclic dependencies
267+
267268
rc = None
268269
response = self._query_properties(props, depth)
269270
if not parse_response_xml:

tests/test_caldav.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
import pytest
2626
import vobject
2727

28-
from caldav import compatibility_hints
2928
from .conf import caldav_servers
3029
from .conf import client
3130
from .conf import proxy
@@ -39,6 +38,7 @@
3938
from .conf import xandikos_port
4039
from .proxy import NonThreadingHTTPServer
4140
from .proxy import ProxyHandler
41+
from caldav import compatibility_hints
4242
from caldav.davclient import DAVClient
4343
from caldav.davclient import DAVResponse
4444
from caldav.elements import cdav

0 commit comments

Comments
 (0)