7 lines
192 B
Python
7 lines
192 B
Python
# vim:fileencoding=utf-8:noet
|
|
from __future__ import (unicode_literals, division, absolute_import, print_function)
|
|
from pkgutil import extend_path
|
|
|
|
|
|
__path__ = extend_path(__path__, __name__)
|