Skip to content

Commit 087389c

Browse files
committed
fix ruff
1 parent b91b725 commit 087389c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,12 @@ commands =
206206
# https://beta.ruff.rs/docs/configuration/
207207
# https://github.com/pandas-dev/pandas/blob/main/pyproject.toml
208208
cache-dir = "var/cache/ruff"
209+
line-length = 120
210+
211+
[tool.ruff.lint]
209212
ignore = [
210213
"B011", # B011 Do not call assert False since python -O removes these calls.
211214
]
212-
line-length = 120
213215

214216
[tool.uv.workspace]
215217
members = ["var/tmp/demo-uv"]

src/httpclient_logging/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
__version__ = "1.0"
33
__copyright__ = "Copyright 2023 Libranet - MIT License."
44

5-
import httpclient_logging.patch
5+
from httpclient_logging import patch
6+
7+
__all__ = ["patch"]

0 commit comments

Comments
 (0)