Skip to content

Commit

Permalink
remove space for kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
jriyyya committed Jul 19, 2023
1 parent b0d4d85 commit 8f6539c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brick.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def __init__(self, position, dimensions):
def update(self):
self.draw()

def draw(self, offset = (0, 0)):
def draw(self, offset=(0, 0)):
x, y = self.rect.x, self.rect.y
self.rect.x += offset [0]
self.rect.y += offset [1]
Expand Down

0 comments on commit 8f6539c

Please sign in to comment.