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 331c392 commit 7eb2d5dCopy full SHA for 7eb2d5d
1 file changed
runner.py
@@ -13,12 +13,12 @@
13
_RUNNER_MAIN = "main"
14
15
16
-def success_text(text) -> str:
+def success_text(text: str) -> str:
17
"""Get success text."""
18
return f"{_STYLE_SUCCESS}{bold_text(text)}{_STYLE_END}"
19
20
21
-def bold_text(text) -> str:
+def bold_text(text: str) -> str:
22
"""Get bold text."""
23
return f"{_STYLE_BOLD}{text}{_STYLE_END}"
24
0 commit comments