Skip to content

Commit

Permalink
Merge pull request #231 from shunichironomura/renovate/ruff-0.x
Browse files Browse the repository at this point in the history
Update dependency ruff to v0.4.4
  • Loading branch information
shunichironomura authored May 15, 2024
2 parents a04b9f1 + 8d2a56a commit 999eff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion capsula/encapsulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def encapsulate(self, *, abort_on_error: bool = True) -> Capsule:
for key, capsule_item in chain(self.contexts.items(), self.watchers.items()):
try:
data[key] = capsule_item.encapsulate()
except Exception as e: # noqa: PERF203,BLE001
except Exception as e: # noqa: PERF203
if abort_on_error:
raise
fails[key] = ExceptionInfo.from_exception(e)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ orjson = ">=3.9.10"
typer = ">=0.9.0"

[tool.poetry.group.dev.dependencies]
ruff = "0.4.3"
ruff = "0.4.4"
mypy = "1.10.0"
pytest = "8.2.0"
coverage = "7.5.1"
Expand Down

0 comments on commit 999eff2

Please sign in to comment.