Skip to content

Commit a42fb9d

Browse files
Minor fix in the lint script
1 parent 5c2af29 commit a42fb9d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ dev = [
3535
[tool.ruff]
3636
line-length = 88
3737
target-version = "py38"
38-
lint.select = ["E", "F", "W"]
39-
lint.extend-select = ["I"]
38+
lint.select = ["E", "F", "W", "I"]
4039
lint.ignore = ["F401", "E501"]
4140

4241
[tool.ruff.format]

scripts/lint_and_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def run_formatter() -> int:
2323

2424
def run_tests() -> int:
2525
"""Placeholder for future test execution."""
26-
print("Running Tests (Placeholder)...")
26+
print("Running Tests...")
2727
return run_command("pytest")
2828

2929

0 commit comments

Comments
 (0)