Skip to content

Commit

Permalink
Remove accidental print (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanhiebert authored Jan 10, 2025
1 parent e42748b commit a0ec6a9
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: astral-sh/setup-uv@v5
- run: uv python install 3.13
- run: uv run ruff format --check
- run: uv run ruff check
isort:
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.5 (2025-01-09)
++++++++++++++++

* Remove accidentally added debug print.
* Add ruff linting and print checking.

2.4 (2025-01-09)
++++++++++++++++

Expand Down
1 change: 0 additions & 1 deletion django_cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ def configure():

# Load from pyproject.toml first
if pyproject := locate():
print(pyproject.open().readlines())
with pyproject.open("rb") as f:
config = tomllib.load(f)
settings_module = (
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,6 @@ code = """
import django_cmd
django_cmd.patch_django()
"""

[tool.ruff.lint]
select = ["T201"]

0 comments on commit a0ec6a9

Please sign in to comment.