Skip to content

Commit

Permalink
fixed type in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
pokepetter committed Nov 1, 2024
1 parent 4362c3d commit 81a53fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ursina/array_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def paste(self, data, x, y, ignore=-1):

def add_margin(self, top=0, right=0, bottom=0, left=0, value=None):
if top < 0 or right < 0 or right < 0 or left < 0:
raise ValueError('input muste be >= 0')
raise ValueError('input must be >= 0')
if value is None:
value = self.default_value

Expand Down

0 comments on commit 81a53fb

Please sign in to comment.