8 lines
305 B
Python
8 lines
305 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 gtfs, mapsme, fmk # noqa F401
|
|
from ._common import transit_to_dict
|
|
|
|
|
|
__all__ = ["gtfs", "mapsme", "fmk", "transit_to_dict"]
|