Extend __path__ with pkgutil to allow editable extensions

This commit is contained in:
Bryan Forbes 2020-08-07 00:11:20 -05:00 committed by GitHub
parent e04bd1b3a1
commit d7aa18beed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,8 @@ __license__ = 'MIT'
__copyright__ = 'Copyright 2015-2020 Rapptz'
__version__ = '1.4.0'
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
from collections import namedtuple
import logging