mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
12 lines
305 B
Python
12 lines
305 B
Python
"""Data science dev database ORM exports."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from python.orm.data_science_dev.base import DataScienceDevBase, DataScienceDevTableBase, DataScienceDevTableBaseBig
|
|
|
|
__all__ = [
|
|
"DataScienceDevBase",
|
|
"DataScienceDevTableBase",
|
|
"DataScienceDevTableBaseBig",
|
|
]
|