Welcome to mirror list, hosted at ThFree Co, Russian Federation.

__init__.py « PostProcessingPlugin « plugins - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 019627ebd5f270350fbe7362548e763100311ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (c) 2020 Jaime van Kessel, Ultimaker B.V.
# The PostProcessingPlugin is released under the terms of the AGPLv3 or higher.

# Workaround for a race condition on certain systems where there
# is a race condition between Arcus and PyQt. Importing Arcus
# first seems to prevent Sip from going into a state where it
# tries to create PyQt objects on a non-main thread.
import Arcus  # @UnusedImport
import Savitar  # @UnusedImport
import pynest2d  # @UnusedImport

from . import PostProcessingPlugin


def getMetaData():
    return {}

def register(app):
    return {"extension": PostProcessingPlugin.PostProcessingPlugin()}