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 23, 2023
1 parent be9cd5a commit 1a10e6e
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 1a10e6e

Please sign in to comment.