7 lines
138 B
Python
7 lines
138 B
Python
try:
|
|
# try import system six module first
|
|
from six import with_metaclass
|
|
except ImportError:
|
|
from .six import with_metaclass
|
|
|