Skip to content

Commit 7eb2d5d

Browse files
committed
Update type hinting for runner
1 parent 331c392 commit 7eb2d5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
_RUNNER_MAIN = "main"
1414

1515

16-
def success_text(text) -> str:
16+
def success_text(text: str) -> str:
1717
"""Get success text."""
1818
return f"{_STYLE_SUCCESS}{bold_text(text)}{_STYLE_END}"
1919

2020

21-
def bold_text(text) -> str:
21+
def bold_text(text: str) -> str:
2222
"""Get bold text."""
2323
return f"{_STYLE_BOLD}{text}{_STYLE_END}"
2424

0 commit comments

Comments
 (0)