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

fix fo E261 at least two spaces before inline comment

This commit is contained in:
Peter Bieringer 2024-03-02 07:47:23 +01:00
parent 551b5c2272
commit 913635a17e
5 changed files with 5 additions and 5 deletions

View file

@ -62,6 +62,6 @@ class CollectionPartMeta(CollectionBase):
def set_meta(self, props: Mapping[str, str]) -> None:
# TODO: better fix for "mypy"
with self._atomic_write(self._props_path, "w") as fo: # type: ignore
with self._atomic_write(self._props_path, "w") as fo: # type: ignore
f = cast(TextIO, fo)
json.dump(props, f, sort_keys=True)