Cura/plugins/CuraDrive/__init__.py
Diego Prado Gesto 8206fde223 Remove the non-load-only-when-testing check
Contributes to CURA-6005.
2018-12-18 16:24:13 +01:00

11 lines
262 B
Python

# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
from .src.DrivePluginExtension import DrivePluginExtension
def getMetaData():
return {}
def register(app):
return {"extension": DrivePluginExtension(app)}