gromero commented on a change in pull request #9229:
URL: https://github.com/apache/tvm/pull/9229#discussion_r738586511



##########
File path: python/tvm/micro/project.py
##########
@@ -75,14 +75,23 @@ def __init__(self, api_client, options):
             raise TemplateProjectError()
 
     def build(self):
+        assert self._options is not None, "'options' is not set!"
         self._api_client.build(self._options)
 
     def flash(self):
+        assert self._options is not None, "'options' is not set!"
         self._api_client.flash(self._options)
 
     def transport(self):
+        assert self._options is not None, "'options' is not set!"
         return ProjectTransport(self._api_client, self._options)
 
+    def info(self):
+        return self._info
+
+    def set_options(self, options):

Review comment:
       Sure. Done.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to