Skip to content

Commit e50e0ff

Browse files
Merge pull request #2045 from freedomofpress/dependabot/pip/ruff-0.4.7
Bump ruff from 0.4.3 to 0.4.7
2 parents 6276fdb + 35bb471 commit e50e0ff

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

client/securedrop_client/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
def try_qubesdb() -> Generator:
1212
"""Minimal context manager around QubesDB() → QubesDB.close() when
1313
available."""
14-
db: bool | "QubesDB" = False
14+
db: bool | "QubesDB" = False # noqa: UP037
1515

1616
try:
1717
from qubesdb import QubesDB

client/securedrop_client/export_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class ExportError(Exception):
55
def __init__(self, status: "ExportStatus"):
6-
self.status: "ExportStatus" = status
6+
self.status: ExportStatus = status
77

88

99
class ExportStatus(Enum):

poetry.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ license = "AGPLv3+"
1212
python = "^3.11"
1313

1414
[tool.poetry.group.dev.dependencies]
15-
ruff = "^0.4.3"
15+
ruff = "^0.4.7"
1616
safety = "*"
1717
shellcheck-py = "*"
1818

0 commit comments

Comments
 (0)