You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In DTROS, we listen for the shutwdown event and then change self.is_shutdown to True, so we only need to check self.is_shutdown(). Also, always use getter and setter functions, do not access variables on self. This means having a var self._is_shutdown and then a function self.is_shutdown() that gives you that value
The text was updated successfully, but these errors were encountered:
In DTROS, we listen for the shutwdown event and then change self.is_shutdown to True, so we only need to check self.is_shutdown(). Also, always use getter and setter functions, do not access variables on self. This means having a var self._is_shutdown and then a function self.is_shutdown() that gives you that value
The text was updated successfully, but these errors were encountered: