We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea1cdb9 commit 14583b0Copy full SHA for 14583b0
src/core/ydata/core/connectors/__init__.py
@@ -0,0 +1,3 @@
1
+from .write_mode import WriteMode
2
+
3
+__all__ = ["WriteMode"]
src/core/ydata/core/connectors/write_mode.py
@@ -0,0 +1,7 @@
+from ydata.core.enum import StringEnum
4
+class WriteMode(StringEnum):
5
+ FAIL = "fail"
6
+ REPLACE = "replace"
7
+ APPEND = "append"
0 commit comments