Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordigitalfrost <gerald.hofmaier@gmail.com>2022-08-20 20:12:44 +0300
committerdigitalfrost <gerald.hofmaier@gmail.com>2022-08-20 20:12:44 +0300
commit62d05f235018a0346b4bfbe5c89aea5d2b89c782 (patch)
tree22f5c8c2d98a77283fca82746cd6a6e75bcb5af3 /cura/TaskManagement
parent6298bb50ce72ebce4e7252c58741a6e318f525df (diff)
OnExitCallbackManager.py: Improve docstring layout
- Reduce line length. - More logical line breaks.
Diffstat (limited to 'cura/TaskManagement')
-rw-r--r--cura/TaskManagement/OnExitCallbackManager.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/cura/TaskManagement/OnExitCallbackManager.py b/cura/TaskManagement/OnExitCallbackManager.py
index 32a805cca8..a943d6321e 100644
--- a/cura/TaskManagement/OnExitCallbackManager.py
+++ b/cura/TaskManagement/OnExitCallbackManager.py
@@ -10,10 +10,13 @@ if TYPE_CHECKING:
#
-# This class manages all registered upon-exit checks that need to be performed when the application tries to exit.
-# For example, show a confirmation dialog when there is USB printing in progress. All callbacks will be called
-# in the order of when they were registered. If all callbacks "pass", that is, for example, if the user clicks "yes"
-# on the exit confirmation dialog and nothing is blocking the exit, then the application will quit.
+# This class manages all registered upon-exit checks
+# that need to be performed when the application tries to exit.
+# For example, show a confirmation dialog when there is USB printing in progress.
+# All callbacks will be called in the order of when they were registered.
+# If all callbacks "pass", for example:
+# if the user clicks "yes" on the exit confirmation dialog
+# and nothing else is blocking the exit, then the application will quit.
#
class OnExitCallbackManager: