Skip to content

Commit f773ef5

Browse files
Minor fix in the lint script
1 parent a44b678 commit f773ef5

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
@@ -34,8 +34,7 @@ dev = [
3434
[tool.ruff]
3535
line-length = 88
3636
target-version = "py38"
37-
lint.select = ["E", "F", "W"]
38-
lint.extend-select = ["I"]
37+
lint.select = ["E", "F", "W", "I"]
3938
lint.ignore = ["F401", "E501"]
4039

4140
[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)