Merge pull request #128 from dmunozv04/deepsource-autofix-c896b47c

refactor: refactor unnecessary `else` / `elif` when `if` block has a `continue` statement
This commit is contained in:
David
2024-01-14 15:19:53 +01:00
committed by GitHub

View File

@@ -145,7 +145,7 @@ def main(config, debug: bool) -> None:
channel_info["name"] = input("Enter the channel name: ")
channel_whitelist.append(channel_info)
continue
elif choice == "6":
if choice == "6":
continue
channel_info["id"] = results[int(choice)][0]