aboutsummaryrefslogtreecommitdiff
path: root/src/components/color.py
diff options
context:
space:
mode:
authortassaron2017-07-02 20:46:48 -0400
committertassaron2017-07-02 20:46:48 -0400
commit0da275bf1b1dd2c956fed9d4a1051dcf3365c382 (patch)
treed4a667fb2b87a851bc1876b2786ea3e37a591a45 /src/components/color.py
parent38557f29f91b8abc68ec3408ce466ee8a5da815e (diff)
renamed component base
Diffstat (limited to 'src/components/color.py')
-rw-r--r--src/components/color.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/color.py b/src/components/color.py
index 8a994db..bd45951 100644
--- a/src/components/color.py
+++ b/src/components/color.py
@@ -3,10 +3,11 @@ from PyQt5 import QtGui, QtCore, QtWidgets
from PyQt5.QtGui import QColor
from PIL.ImageQt import ImageQt
import os
-from . import __base__
+from component import Component
-class Component(__base__.Component):
+
+class Component(Component):
'''Color'''
modified = QtCore.pyqtSignal(int, dict)