mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-14 04:36:01 +08:00
Improve triggerNextCallback documentation
triggerNextCallback documentation: - Correct grammar - Shorten lines and improve layout
This commit is contained in:
parent
62d05f2350
commit
fe2b8ebaf7
@ -38,8 +38,10 @@ class OnExitCallbackManager:
|
|||||||
def getIsAllChecksPassed(self) -> bool:
|
def getIsAllChecksPassed(self) -> bool:
|
||||||
return self._is_all_checks_passed
|
return self._is_all_checks_passed
|
||||||
|
|
||||||
# Trigger the next callback if available. If not, it means that all callbacks have "passed", which means we should
|
# Trigger the next callback if there is one.
|
||||||
# not block the application to quit, and it will call the application to actually quit.
|
# If not, all callbacks have "passed",
|
||||||
|
# which means we should not prevent the application from quitting,
|
||||||
|
# and we call the application to actually quit.
|
||||||
def triggerNextCallback(self) -> None:
|
def triggerNextCallback(self) -> None:
|
||||||
# Get the next callback and schedule that if
|
# Get the next callback and schedule that if
|
||||||
this_callback = None
|
this_callback = None
|
||||||
|
Loading…
x
Reference in New Issue
Block a user