Skip to content

Commit

Permalink
Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thelabcat committed May 31, 2024
1 parent 076e8d3 commit 7851cc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rumchat_actor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,9 @@ def streamer_main_page_url(self):

#Is not an API stream and we don't know the username
elif not self.__streamer_username:
while not (self.__streamer_main_page_url := input("Enter streamer main page URL: ")).startswith(RUMBLE_BASE_URL):
while not (specified := input("Enter streamer main page URL: ")).startswith(RUMBLE_BASE_URL):
pass
self.__streamer_main_page_url = specified

#Not a channel stream, go by username
else:
Expand Down

0 comments on commit 7851cc9

Please sign in to comment.