Skip to content

Commit

Permalink
Linted code
Browse files Browse the repository at this point in the history
  • Loading branch information
thelabcat committed Oct 24, 2024
1 parent f69bd6a commit 2bb4aa1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rumchat_actor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ def __init__(self, init_message = "Hello, Rumble!", ignore_users = ["TheRumbleBo
self.password = kwargs.get("password")

#Username must not be an email
if "@" in username:
print()"Username cannot be provided as email, must be displayed username.")
if "@" in self.username:
print("Username cannot be provided as email, must be displayed username.")
self.username = None

#We can get the username from the Rumble Live Stream API
Expand Down

0 comments on commit 2bb4aa1

Please sign in to comment.