Skip to content

Commit 4e218d2

Browse files
committed
linter
1 parent e0bce25 commit 4e218d2

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/isnt_that_odd/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def run_benchmark(
146146
r for r in results if not r["correct"] and r["predicted"] is not None
147147
]
148148
if incorrect_results and verbose:
149-
click.echo(f"\n❌ Examples of incorrect predictions:")
149+
click.echo("\n❌ Examples of incorrect predictions:")
150150
for r in incorrect_results[:5]: # Show first 5
151151
click.echo(
152152
f" {r['number']}: Predicted {'EVEN' if r['predicted'] else 'ODD'}, "

tests/test_cli.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from unittest.mock import patch
33

44
from click.testing import CliRunner
5-
from isnt_that_odd.cli import check
65
from isnt_that_odd.cli import cli
76
from isnt_that_odd.cli import parse_number
87

0 commit comments

Comments
 (0)