blob: 76f39a236dc448dc0627cc25ef616497e01f6c07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# imports
import typing
# inner-module imports
from . import predefined as ns
from .namespace import Namespace
# exports
__all__: typing.Sequence[str] = (
'Namespace',
'ns',
)
## EOF ##
|