Browse Source

Update function name to match code style

CURA-9514
joeydelarago 2 years ago
parent
commit
b999a88b26
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cura/Machines/Models/MachineListModel.py

+ 1 - 1
cura/Machines/Models/MachineListModel.py

@@ -61,7 +61,7 @@ class MachineListModel(ListModel):
         return self._show_cloud_printers
 
     @pyqtSlot(bool, name="setShowCloudPrinters")
-    def set_show_cloud_printers(self, show_cloud_printers: bool) -> None:
+    def setShowCloudPrinters(self, show_cloud_printers: bool) -> None:
         self._show_cloud_printers = show_cloud_printers
         self._updateDelayed()
         self.showCloudPrintersChanged.emit(show_cloud_printers)