__init__.py 267 B

1234567891011
  1. # Copyright (c) 2016 Ultimaker B.V.
  2. # Cura is released under the terms of the LGPLv3 or higher.
  3. from . import MachineSettingsAction
  4. def getMetaData():
  5. return {}
  6. def register(app):
  7. return { "machine_action": MachineSettingsAction.MachineSettingsAction() }