1
0
Fork 0
mirror of https://github.com/Kozea/Radicale.git synced 2025-09-15 20:36:55 +00:00

flake8 regression E261

This commit is contained in:
Peter Bieringer 2025-05-16 07:28:50 +02:00
parent 4bbbc3c384
commit d1098c3e22
4 changed files with 8 additions and 8 deletions

View file

@ -177,7 +177,7 @@ def xml_report(base_prefix: str, path: str, xml_request: Optional[ET.Element],
props: Union[ET.Element, List]
if root.find(xmlutils.make_clark("D:prop")) is not None:
props = root.find(xmlutils.make_clark("D:prop")) # type: ignore[assignment]
props = root.find(xmlutils.make_clark("D:prop")) # type: ignore[assignment]
else:
props = []