mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 14:23:53 +01:00
Fix ruff
This commit is contained in:
parent
0182273e99
commit
8b757139ef
2 changed files with 7 additions and 7 deletions
|
@ -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]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue