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