Add missing __init__.py

This commit is contained in:
fieldOfView 2017-12-06 16:08:19 +01:00
parent e3ccbb2d25
commit a5090dcef1

View file

@ -0,0 +1,12 @@
# Copyright (c) 2017 fieldOfView
# The BlackBeltPlugin is released under the terms of the AGPLv3 or higher.
from . import BlackBeltPlugin
from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog("BlackBeltPlugin")
def getMetaData():
return {}
def register(app):
return {"extension": BlackBeltPlugin.BlackBeltPlugin()}