We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0bce25 commit 4e218d2Copy full SHA for 4e218d2
src/isnt_that_odd/cli.py
@@ -146,7 +146,7 @@ def run_benchmark(
146
r for r in results if not r["correct"] and r["predicted"] is not None
147
]
148
if incorrect_results and verbose:
149
- click.echo(f"\n❌ Examples of incorrect predictions:")
+ click.echo("\n❌ Examples of incorrect predictions:")
150
for r in incorrect_results[:5]: # Show first 5
151
click.echo(
152
f" {r['number']}: Predicted {'EVEN' if r['predicted'] else 'ODD'}, "
tests/test_cli.py
@@ -2,7 +2,6 @@
2
from unittest.mock import patch
3
4
from click.testing import CliRunner
5
-from isnt_that_odd.cli import check
6
from isnt_that_odd.cli import cli
7
from isnt_that_odd.cli import parse_number
8
0 commit comments