Skip to content

Commit e48a3cb

Browse files
committed
Fix font_name typing issue
1 parent 50cf86f commit e48a3cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arcade/text.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def _init_deferred(self):
337337

338338
arcade.get_window()
339339

340-
self._arguments["font_name"] = _attempt_font_name_resolution(self._arguments["font_name"])
340+
self._arguments["font_name"] = _attempt_font_name_resolution(self._arguments["font_name"]) # type: ignore
341341
self._label = pyglet.text.Label(**self._arguments)
342342

343343
self._initialized = True

0 commit comments

Comments
 (0)