Skip to content

Commit 8e2bab2

Browse files
fix: add missing return type annotations to test functions
Co-authored-by: Aseem Saxena <aseembits93@users.noreply.github.com>
1 parent 48e6835 commit 8e2bab2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/test_help_banner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
import sys
33

44

5-
def test_help_displays_logo():
5+
def test_help_displays_logo() -> None:
66
result = subprocess.run(
77
[sys.executable, "-c", "from codeflash.main import main; main()", "--help"], capture_output=True, text=True
88
)
99
assert result.returncode == 0
1010
assert "codeflash.ai" in result.stdout
1111

1212

13-
def test_help_short_flag_displays_logo():
13+
def test_help_short_flag_displays_logo() -> None:
1414
result = subprocess.run(
1515
[sys.executable, "-c", "from codeflash.main import main; main()", "-h"], capture_output=True, text=True
1616
)

0 commit comments

Comments
 (0)