8 lines
134 B
Python
8 lines
134 B
Python
import sys
|
|
|
|
|
|
if sys.platform == 'win32':
|
|
from .win32 import * # noqa: F401,F403
|
|
else:
|
|
from .unix import * # noqa: F401,F403
|