# imports import collections import typing # bsfs imports from .front import Open # constants T_VERSION_INFO = collections.namedtuple('T_VERSION_INFO', ('major', 'minor', 'micro')) # pylint: disable=invalid-name version_info = T_VERSION_INFO(0, 0, 1) # exports __all__: typing.Sequence[str] = ( 'Open', ) ## EOF ##