Closed jfhbrook closed 2 years ago
This PR refactors import paths so that I will eventually not have to do ImportError checks inside __init__.py. Basically, things like this:
__init__.py
from pyee import TwistedEventEmitter
are deprecated in favor of:
from pyee.twisted import TwistedEventEmitter
Closes #87.
fI made this change already elsewhere. Derf.
This PR refactors import paths so that I will eventually not have to do ImportError checks inside
__init__.py
. Basically, things like this:are deprecated in favor of:
Closes #87.