[modules/octoprint] small improvements based on code review

* no need to call update method in constructor of the module
* renamed method "update_status" to "update" to get rid off one
level of indirection
This commit is contained in:
Bernhard B 2020-05-03 16:03:59 +02:00
parent 9dd0eb58eb
commit 8761c09c19

View file

@ -72,8 +72,6 @@ class Module(core.module.Module):
self.__printer_bed_temperature = "-"
self.__tool1_temperature = "-"
self.update_status()
core.input.register(self, button=core.input.LEFT_MOUSE,
cmd=self.__show_popup)
@ -120,7 +118,7 @@ class Module(core.module.Module):
tool_id += 1
return tool_temperatures
def update_status(self):
def update(self):
try:
self.__octoprint_state = self.__get_octoprint_state()
@ -215,9 +213,6 @@ class Module(core.module.Module):
self.__webcam_images_queue = None
self.__webcam_images_worker.stop()
def update(self):
self.update_status()
def state(self, widget):
return []