Skip to content

Commit f69fc97

Browse files
edel_gerardotobixen
authored andcommitted
Applied tox -e style
1 parent 7fcbf18 commit f69fc97

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

caldav/davclient.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,8 @@ def _parse_response(self, response) -> Tuple[str, List[_Element], Optional[Any]]
222222
assert not href
223223
# Fix for https://github.com/python-caldav/caldav/issues/471
224224
# Confluence server quotes the user email twice. We unquote it manually.
225-
if '%2540' in elem.text:
226-
elem.text = elem.text.replace('%2540', '%40')
225+
if "%2540" in elem.text:
226+
elem.text = elem.text.replace("%2540", "%40")
227227
href = unquote(elem.text)
228228
elif elem.tag == dav.PropStat.tag:
229229
propstats.append(elem)

0 commit comments

Comments
 (0)