fix: add missing return type annotations to test functions

Co-authored-by: Aseem Saxena <aseembits93@users.noreply.github.com>
This commit is contained in:
claude[bot] 2026-04-06 23:12:44 +00:00
parent 48e6835990
commit 8e2bab2e42

View file

@ -2,7 +2,7 @@ import subprocess
import sys
def test_help_displays_logo():
def test_help_displays_logo() -> None:
result = subprocess.run(
[sys.executable, "-c", "from codeflash.main import main; main()", "--help"], capture_output=True, text=True
)
@ -10,7 +10,7 @@ def test_help_displays_logo():
assert "codeflash.ai" in result.stdout
def test_help_short_flag_displays_logo():
def test_help_short_flag_displays_logo() -> None:
result = subprocess.run(
[sys.executable, "-c", "from codeflash.main import main; main()", "-h"], capture_output=True, text=True
)