Skip to content

Commit 9bd4218

Browse files
authored
Merge pull request #2393 from dr0id/bugfix/lint/locals
ignore lint warning in locals.py (to make the linter pass)
2 parents c3d0c73 + 1c8af19 commit 9bd4218

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src_py/locals.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
the local namespace for your module"""
2424

2525
import pygame
26-
from pygame.constants import * # pylint: disable=wildcard-import; lgtm[py/polluting-import]
26+
from pygame.constants import * # pylint: disable=wildcard-import,unused-wildcard-import; lgtm[py/polluting-import]
2727
from pygame.rect import Rect
2828
from pygame.color import Color
2929

0 commit comments

Comments
 (0)