-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change in next_level() #27
base: main
Are you sure you want to change the base?
Conversation
|
||
|
||
def next_level(level, levels): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Extra spaces between comment and function should be removed
def next_level(level, levels): | |
def next_level(level, levels): |
# Get position of mouse as a tuple representing the | ||
mouse_pos = pygame.mouse.get_pos() | ||
# (x, y) coordinate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code formatting makes this weird.
# Get position of mouse as a tuple representing the | |
mouse_pos = pygame.mouse.get_pos() | |
# (x, y) coordinate | |
# Get position of mouse as a tuple representing the (x, y) coordinate. | |
mouse_pos = pygame.mouse.get_pos() | |
Sorry for confusing instructions, let's keep the changes made to |
No description provided.