mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-01 06:41:06 -07:00
Applied requested changes proposed by @ninovanhooff
Fixed a couple of missed double quotes, trailing and leading spaces, to long comment lines
This commit is contained in:
parent
9b44ca37ef
commit
679739d09d
9 changed files with 27 additions and 28 deletions
|
|
@ -27,7 +27,7 @@ class Account(QObject):
|
|||
api = CuraAPI()
|
||||
api.account.login()
|
||||
api.account.logout()
|
||||
api.account.userProfile Who is logged in``
|
||||
api.account.userProfile # Who is logged in
|
||||
"""
|
||||
|
||||
loginStateChanged = pyqtSignal(bool)
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ class Backups:
|
|||
from cura.API import CuraAPI
|
||||
api = CuraAPI()
|
||||
api.backups.createBackup()
|
||||
api.backups.restoreBackup(my_zip_file, {"cura_release": "3.1"})``
|
||||
api.backups.restoreBackup(my_zip_file, {"cura_release": "3.1"})
|
||||
"""
|
||||
|
||||
def __init__(self, application: "CuraApplication") -> None:
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ class Settings:
|
|||
"actions": my_menu_actions,
|
||||
"menu_item": MyPluginAction(self)
|
||||
}
|
||||
api.interface.settings.addContextMenuItem(data)``
|
||||
api.interface.settings.addContextMenuItem(data)
|
||||
"""
|
||||
|
||||
def __init__(self, application: "CuraApplication") -> None:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue