aboutsummaryrefslogtreecommitdiff
path: root/ethosu/vela/tflite/LogicalOrOptions.py
diff options
context:
space:
mode:
Diffstat (limited to 'ethosu/vela/tflite/LogicalOrOptions.py')
-rw-r--r--ethosu/vela/tflite/LogicalOrOptions.py14
1 files changed, 8 insertions, 6 deletions
diff --git a/ethosu/vela/tflite/LogicalOrOptions.py b/ethosu/vela/tflite/LogicalOrOptions.py
index b058a3b9..6e9ec5b2 100644
--- a/ethosu/vela/tflite/LogicalOrOptions.py
+++ b/ethosu/vela/tflite/LogicalOrOptions.py
@@ -28,9 +28,11 @@ class LogicalOrOptions(object):
def Init(self, buf, pos):
self._tab = flatbuffers.table.Table(buf, pos)
-def LogicalOrOptionsStart(builder): builder.StartObject(0)
-def Start(builder):
- return LogicalOrOptionsStart(builder)
-def LogicalOrOptionsEnd(builder): return builder.EndObject()
-def End(builder):
- return LogicalOrOptionsEnd(builder) \ No newline at end of file
+def Start(builder): builder.StartObject(0)
+def LogicalOrOptionsStart(builder):
+ """This method is deprecated. Please switch to Start."""
+ return Start(builder)
+def End(builder): return builder.EndObject()
+def LogicalOrOptionsEnd(builder):
+ """This method is deprecated. Please switch to End."""
+ return End(builder) \ No newline at end of file