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:
authorSimon Edwards <s.edwards@ultimaker.com>2016-11-21 23:36:08 +0300
committerSimon Edwards <s.edwards@ultimaker.com>2016-11-21 23:36:08 +0300
commit14afd9eab7687a26a49d730c0aef1883b51eb570 (patch)
treeace9fb3fc280b97f6dce62bb0b1380bef8c62187 /plugins/VersionUpgrade/VersionUpgrade21to22
parentb2068ce99bc65b135ef10c577a732e8b06ed9a35 (diff)
Heaps to changes to get the Cura code through the type checker (with minimal checking).
CURA-2917
Diffstat (limited to 'plugins/VersionUpgrade/VersionUpgrade21to22')
-rw-r--r--plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py b/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py
index 4ac86f9a1d..84cbc390a7 100644
--- a/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py
+++ b/plugins/VersionUpgrade/VersionUpgrade21to22/Profile.py
@@ -25,7 +25,7 @@ class Profile:
#
# \param serialised A string with the contents of a profile.
# \param filename The supposed filename of the profile, without extension.
- def __init__(self, serialised, filename):
+ def __init__(self, serialised: str, filename: str):
self._filename = filename
parser = configparser.ConfigParser(interpolation = None)