diff options
| author | tassaron | 2017-07-02 20:46:48 -0400 |
|---|---|---|
| committer | tassaron | 2017-07-02 20:46:48 -0400 |
| commit | 0da275bf1b1dd2c956fed9d4a1051dcf3365c382 (patch) | |
| tree | d4a667fb2b87a851bc1876b2786ea3e37a591a45 /src/components/image.py | |
| parent | 38557f29f91b8abc68ec3408ce466ee8a5da815e (diff) | |
renamed component base
Diffstat (limited to 'src/components/image.py')
| -rw-r--r-- | src/components/image.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/components/image.py b/src/components/image.py index 4bb33b1..ba99113 100644 --- a/src/components/image.py +++ b/src/components/image.py @@ -1,10 +1,11 @@ from PIL import Image, ImageDraw from PyQt5 import QtGui, QtCore, QtWidgets import os -from . import __base__ +from component import Component -class Component(__base__.Component): + +class Component(Component): '''Image''' modified = QtCore.pyqtSignal(int, dict) |
