Coverage for src/typedal/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-05 15:15 +0200
« prev ^ index » next coverage.py v7.2.7, created at 2023-06-05 15:15 +0200
1"""
2TypeDAL Library.
3"""
5from . import fields # noqa: imports are there for library reasons
6from .core import ( # noqa: imports are there for library reasons
7 TypeDAL,
8 TypedRows,
9 TypedTable,
10)
11from .fields import TypedField # noqa: imports are there for library reasons
13# __all__ = TypeDal, TypedTable, TypedField, TypedRows, fields