Skip to content
Snippets Groups Projects
Verified Commit 1f6af16b authored by Daniel Hornung's avatar Daniel Hornung
Browse files

WIP: mypy

parent 3f2099c2
No related branches found
No related tags found
2 merge requests!175BUG: Request responses without the "Set-Cookie" header no longer overwrite the...,!164Fix mypy errors
Pipeline #58013 canceled
......@@ -91,7 +91,7 @@ def get_server_properties() -> dict[str, Optional[str]]:
props: dict[str, Optional[str]] = dict()
for elem in xml.getroot():
props[elem.tag] = str(elem.text)
props[str(elem.tag)] = str(elem.text)
return props
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment