We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b91b725 commit 087389cCopy full SHA for 087389c
pyproject.toml
@@ -206,10 +206,12 @@ commands =
206
# https://beta.ruff.rs/docs/configuration/
207
# https://github.com/pandas-dev/pandas/blob/main/pyproject.toml
208
cache-dir = "var/cache/ruff"
209
+line-length = 120
210
+
211
+[tool.ruff.lint]
212
ignore = [
213
"B011", # B011 Do not call assert False since python -O removes these calls.
214
]
-line-length = 120
215
216
[tool.uv.workspace]
217
members = ["var/tmp/demo-uv"]
src/httpclient_logging/__init__.py
@@ -2,4 +2,6 @@
2
__version__ = "1.0"
3
__copyright__ = "Copyright 2023 Libranet - MIT License."
4
5
-import httpclient_logging.patch
+from httpclient_logging import patch
6
7
+__all__ = ["patch"]
0 commit comments