Skip to content

Commit 18a915d

Browse files
committed
Remove comment and add correct return type
1 parent 39fd76f commit 18a915d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

twitchio/__main__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@
5454
parser = argparse.ArgumentParser(prog="twitchio")
5555
parser.add_argument("--version", action="store_true", help="Get version and debug information for TwitchIO.")
5656

57-
# TODO: Only uncomment for testing, until complete...
5857
new_bot = parser.add_argument_group("Create Bot", "Create and generate bot boilerplate via an interactive walkthrough.")
5958
new_bot.add_argument("--create-new", action="store_true", help="Start an interactive walkthrough.")
6059

@@ -301,7 +300,7 @@ def generate_venv() -> None:
301300
install_packages(exe, starlette)
302301

303302

304-
async def generate_bot() -> ...:
303+
async def generate_bot() -> None:
305304
name = validate_input("Project name? (Leave blank to generate files in this directory): ")
306305
if name:
307306
_dir = pathlib.Path(name)

0 commit comments

Comments
 (0)