[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:
parent
9dd0eb58eb
commit
8761c09c19
1 changed files with 1 additions and 6 deletions
|
@ -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 []
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue