This commit is contained in:
Gabriel Augendre 2023-02-13 19:35:11 +01:00
parent 0182273e99
commit 8b757139ef
2 changed files with 7 additions and 7 deletions

View file

@ -45,7 +45,7 @@ repos:
hooks:
- id: djhtml
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.243'
rev: 'v0.0.246'
hooks:
- id: ruff
args: [--fix]

View file

@ -249,15 +249,15 @@ APP = {
try:
with Path("/app/git/build-date").open() as f:
APP["build"]["date"] = f.read().strip()
except Exception:
pass # noqa: S110
except Exception: # noqa: S110
pass
try:
with Path("/app/git/git-commit").open() as f:
APP["build"]["commit"] = f.read().strip()
except Exception:
pass # noqa: S110
except Exception: # noqa: S110
pass
try:
with Path("/app/git/git-describe").open() as f:
APP["build"]["describe"] = f.read().strip()
except Exception:
pass # noqa: S110
except Exception: # noqa: S110
pass