Ignore flake8 errors with inline comments: F401,F403
This commit is contained in:
parent
c4c6f506f4
commit
fb3d8d1e01
|
|
@ -2,6 +2,6 @@ import sys
|
|||
|
||||
|
||||
if sys.platform == 'win32':
|
||||
from .win32 import *
|
||||
from .win32 import * # noqa: F401,F403
|
||||
else:
|
||||
from .unix import *
|
||||
from .unix import * # noqa: F401,F403
|
||||
|
|
|
|||
Loading…
Reference in New Issue