Skip to content

Commit 9c7fc76

Browse files
committed
style fix
1 parent 564d365 commit 9c7fc76

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

caldav/davclient.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -425,11 +425,13 @@ def __init__(
425425
self.proxy = _proxy
426426

427427
# Build global headers
428-
self.headers = CaseInsensitiveDict({
429-
"User-Agent": "python-caldav/" + __version__,
430-
"Content-Type": "text/xml",
431-
"Accept": "text/xml, text/calendar",
432-
})
428+
self.headers = CaseInsensitiveDict(
429+
{
430+
"User-Agent": "python-caldav/" + __version__,
431+
"Content-Type": "text/xml",
432+
"Accept": "text/xml, text/calendar",
433+
}
434+
)
433435
self.headers.update(headers or {})
434436
if self.url.username is not None:
435437
username = unquote(self.url.username)

0 commit comments

Comments
 (0)