Skip to content

Commit

Permalink
Amend typing in SpriteList.draw signature
Browse files Browse the repository at this point in the history
  • Loading branch information
pushfoo committed Mar 9, 2023
1 parent 92c4ea6 commit cadb65a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arcade/sprite_list/sprite_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ def initialize(self):
"""
self._init_deferred()

def draw(self, *, filter: Optional = None, pixelated: bool = None, blend_function: Optional = None):
def draw(self, *, filter: Optional[int] = None, pixelated: bool = False, blend_function: Optional[int] = None):
"""
Draw this SpriteList into the current OpenGL context.
Expand Down

0 comments on commit cadb65a

Please sign in to comment.