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:
authorRemco Burema <r.burema@ultimaker.com>2021-12-30 13:51:54 +0300
committerRemco Burema <r.burema@ultimaker.com>2021-12-30 13:51:54 +0300
commitb794ad6ed22889d5b9c7857132b53a31b32b77b6 (patch)
treed712197a2f88d2737fed30c0ae515e0b481d613d /scripts
parentcf7772a40a64c0049fe80bd9d936d825715c5aa4 (diff)
Delete old 'Toolbox' in favour of new Marketplace.
part of CURA-8588
Diffstat (limited to 'scripts')
-rw-r--r--scripts/check_invalid_imports.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_invalid_imports.py b/scripts/check_invalid_imports.py
index ba21b9f822..b77a82568d 100644
--- a/scripts/check_invalid_imports.py
+++ b/scripts/check_invalid_imports.py
@@ -8,7 +8,7 @@ Run this file with the Cura project root as the working directory
Checks for invalid imports. When importing from plugins, there will be no problems when running from source,
but for some build types the plugins dir is not on the path, so relative imports should be used instead. eg:
from ..UltimakerCloudScope import UltimakerCloudScope <-- OK
-import plugins.Toolbox.src ... <-- NOT OK
+import plugins.Marketplace.src ... <-- NOT OK
"""