Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed May 13, 2024
1 parent 24255ca commit b5780cf
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 20 deletions.
2 changes: 1 addition & 1 deletion debug_toolbar/panels/templates/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def process_context_list(self, context_layers):
f"<<{value.__class__.__name__.lower()} of {value.model._meta.label}>>"
)
else:
token = allow_sql.set(False) # noqa: FBT003
token = allow_sql.set(False)
try:
saferepr(value) # this MAY trigger a db query
except SQLQueryTriggered:
Expand Down
41 changes: 23 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ requires = [
name = "django-debug-toolbar"
description = "A configurable set of panels that display various debug information about the current request/response."
readme = "README.rst"
license = {text = "BSD-3-Clause"}
license = { text = "BSD-3-Clause" }
authors = [
{ name = "Rob Hudson" },
{ name = "Rob Hudson" },
]
requires-python = ">=3.8"
classifiers = [
Expand All @@ -35,15 +35,15 @@ dynamic = [
"version",
]
dependencies = [
"Django>=4.2.9",
"django>=4.2.9",
"sqlparse>=0.2",
]
[project.urls]
Download = "https://pypi.org/project/django-debug-toolbar/"
Homepage = "https://github.com/jazzband/django-debug-toolbar"

urls.Download = "https://pypi.org/project/django-debug-toolbar/"
urls.Homepage = "https://github.com/jazzband/django-debug-toolbar"
[tool.hatch.build.targets.wheel]
packages = ["debug_toolbar"]
packages = [
"debug_toolbar",
]

[tool.hatch.version]
path = "debug_toolbar/__init__.py"
Expand All @@ -53,6 +53,9 @@ fix = true
show-fixes = true
target-version = "py38"

[tool.ruff.lint.mccabe]
max-complexity = 16

[tool.ruff.lint]
extend-select = [
"ASYNC", # flake8-async
Expand All @@ -79,29 +82,31 @@ extend-ignore = [
"SIM108", # Use ternary operator instead of if-else-block
]

[tool.ruff.lint.isort]
combine-as-imports = true

[tool.ruff.lint.mccabe]
max-complexity = 16

[tool.ruff.lint.per-file-ignores]
"*/migrat*/*" = [
"N806", # Allow using PascalCase model names in migrations
"N999", # Ignore the fact that migration files are invalid module names
"N806", # Allow using PascalCase model names in migrations
"N999", # Ignore the fact that migration files are invalid module names
]

[tool.ruff.lint.isort]
combine-as-imports = true

[tool.coverage.html]
skip_covered = true
skip_empty = true

[tool.coverage.run]
branch = true
parallel = true
source = ["debug_toolbar"]
source = [
"debug_toolbar",
]

[tool.coverage.paths]
source = ["src", ".tox/*/site-packages"]
source = [
"src",
".tox/*/site-packages",
]

[tool.coverage.report]
# Update coverage badge link in README.rst when fail_under changes
Expand Down
2 changes: 1 addition & 1 deletion tests/panels/test_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async def test_cursor_wrapper_asyncio_ctx(self, mock_patch_cursor_wrapper):
await sync_to_async(sql_call)()

async def task():
sql_tracking.allow_sql.set(False) # noqa: FBT003
sql_tracking.allow_sql.set(False)
# By disabling sql_tracking.allow_sql, we are indicating that any
# future SQL queries should be stopped. If SQL query occurs,
# it raises an exception.
Expand Down

0 comments on commit b5780cf

Please sign in to comment.