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