Skip to content

Commit df6efe9

Browse files
committed
mypy fix
1 parent d2289e5 commit df6efe9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codeflash/result/create_pr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ def existing_tests_source_for(
130130
rows.append(
131131
[f"`{filename}::{qualified_name}`", f"{print_original_runtime}", f"{print_optimized_runtime}", "❌"]
132132
)
133-
output += tabulate(
133+
output += tabulate( # type: ignore[no-untyped-call]
134134
headers=headers, tabular_data=rows, tablefmt="pipe", colglobalalign=None, preserve_whitespace=True
135135
)
136136
output += "\n"
137-
return output
137+
return output # type: ignore[no-any-return]
138138

139139

140140
def check_create_pr(

0 commit comments

Comments
 (0)