Skip to content

Commit

Permalink
fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
woutervh committed Dec 12, 2024
1 parent b91b725 commit 087389c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -206,10 +206,12 @@ commands =
# https://beta.ruff.rs/docs/configuration/
# https://github.com/pandas-dev/pandas/blob/main/pyproject.toml
cache-dir = "var/cache/ruff"
line-length = 120

[tool.ruff.lint]
ignore = [
"B011", # B011 Do not call assert False since python -O removes these calls.
]
line-length = 120

[tool.uv.workspace]
members = ["var/tmp/demo-uv"]
Expand Down
4 changes: 3 additions & 1 deletion src/httpclient_logging/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
__version__ = "1.0"
__copyright__ = "Copyright 2023 Libranet - MIT License."

import httpclient_logging.patch
from httpclient_logging import patch

__all__ = ["patch"]

0 comments on commit 087389c

Please sign in to comment.