12345678910111213141516171819202122232425 |
- from UM.PluginObject import PluginObject
- class ProfileWriter(PluginObject):
-
-
-
- def __init__(self):
- super().__init__()
-
-
-
-
-
-
-
-
- def write(self, path, profiles):
- raise NotImplementedError("Profile writer plugin was not correctly implemented. No write was specified.")
|