removed pyc files, fixed import bug
This commit is contained in:
parent
aaece4badc
commit
4c525ffa06
Binary file not shown.
1
Qt.py
1
Qt.py
@ -1,5 +1,6 @@
|
||||
## Do all Qt imports from here to allow easier PyQt / PySide compatibility
|
||||
|
||||
#from PySide import QtGui, QtCore, QtOpenGL, QtSvg
|
||||
from PyQt4 import QtGui, QtCore, QtOpenGL, QtSvg
|
||||
if not hasattr(QtCore, 'Signal'):
|
||||
QtCore.Signal = QtCore.pyqtSignal
|
||||
|
BIN
SignalProxy.pyc
BIN
SignalProxy.pyc
Binary file not shown.
BIN
Transform.pyc
BIN
Transform.pyc
Binary file not shown.
BIN
WidgetGroup.pyc
BIN
WidgetGroup.pyc
Binary file not shown.
BIN
__init__.pyc
BIN
__init__.pyc
Binary file not shown.
BIN
functions.pyc
BIN
functions.pyc
Binary file not shown.
@ -3,7 +3,7 @@ from pyqtgraph.GraphicsScene import GraphicsScene
|
||||
from pyqtgraph.Point import Point
|
||||
import weakref
|
||||
|
||||
class GraphicsItemMethods:
|
||||
class GraphicsItemMethods(object):
|
||||
"""
|
||||
Class providing useful methods to GraphicsObject and GraphicsWidget.
|
||||
"""
|
||||
@ -253,4 +253,4 @@ class GraphicsItemMethods:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -24,6 +24,7 @@ from pyqtgraph.widgets.FileDialog import FileDialog
|
||||
import weakref
|
||||
#from types import *
|
||||
import numpy as np
|
||||
import os
|
||||
#from .. PlotCurveItem import PlotCurveItem
|
||||
#from .. ScatterPlotItem import ScatterPlotItem
|
||||
from .. PlotDataItem import PlotDataItem
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user