Skip to content

Commit fcc4fe3

Browse files
committed
Fix black errors
1 parent 46a4e75 commit fcc4fe3

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

top-python-game-engines/pygame/pygame_game.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,7 @@ def __init__(self):
3939
super(Player, self).__init__()
4040

4141
# Get the image to draw for the player
42-
player_image = str(
43-
Path.cwd() / "images" / "alien_green_stand.png"
44-
)
42+
player_image = str(Path.cwd() / "images" / "alien_green_stand.png")
4543
# Load the image, preserve alpha channel for transparency
4644
self.surf = pygame.image.load(player_image).convert_alpha()
4745
# Save the rect so we can move it

0 commit comments

Comments
 (0)