Skip to content

Commit b7da0ad

Browse files
authored
feat: data type enum (#39)
1 parent f8ed6c5 commit b7da0ad

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/core/ydata/core/datatype.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from .enum import StringEnum
2+
3+
4+
class DataType(StringEnum):
5+
TABULAR = "tabular"
6+
TIMESERIES = "timeseries"

0 commit comments

Comments
 (0)