4 lines
206 B
Python
4 lines
206 B
Python
# Import only those processors (modules) you want to use.
|
|
# Ignore F401 "module imported but unused" violation since these modules
|
|
# are addressed via introspection.
|
|
from . import mapsme, gtfs # noqa F401
|