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

@@ -96,7 +96,7 @@ class CollectionPartSync(CollectionPartCache, CollectionPartHistory,
try:
# Race: Other processes might have created and locked the file.
# TODO: better fix for "mypy"
with self._atomic_write(token_path, "wb") as fo: # type: ignore
with self._atomic_write(token_path, "wb") as fo: # type: ignore
fb = cast(BinaryIO, fo)
pickle.dump(state, fb)
except PermissionError: