noqa empty passes on version detection

This commit is contained in:
Matthias
2024-06-08 09:23:02 +02:00
parent 6b932133ea
commit 50e4d273f4
3 changed files with 3 additions and 3 deletions

View File

@@ -31,7 +31,7 @@ if "dev" in __version__:
versionfile = Path("./freqtrade_commit")
if versionfile.is_file():
__version__ = f"docker-{__version__}-{versionfile.read_text()[:8]}"
except Exception:
except Exception: # noqa: S110
pass
__all__ = ["FtRestClient"]