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 bd27858 commit 503ec95Copy full SHA for 503ec95
1 file changed
runner.py
@@ -13,17 +13,17 @@
13
_RUNNER_MAIN = "main"
14
15
16
-def success_text(text):
+def success_text(text) -> str:
17
"""Get success text."""
18
return f"{_STYLE_SUCCESS}{bold_text(text)}{_STYLE_END}"
19
20
21
-def bold_text(text):
+def bold_text(text) -> str:
22
"""Get bold text."""
23
return f"{_STYLE_BOLD}{text}{_STYLE_END}"
24
25
26
-def main():
+def main() -> None:
27
print(bold_text(f"Start {root_name} runner"))
28
29
for item in walk_packages(root_path, f"{root_name}."):
0 commit comments