Added expected exported classes definitions
This commit is contained in:
parent
4e18a8d77b
commit
19b230254a
5
GraphWidget/GraphWidget.py
Normal file
5
GraphWidget/GraphWidget.py
Normal file
@ -0,0 +1,5 @@
|
||||
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg
|
||||
|
||||
class GraphWidget(FigureCanvasQTAgg):
|
||||
def __init__(self, *args):
|
||||
...
|
@ -0,0 +1,3 @@
|
||||
from .GraphWidget import GraphWidget
|
||||
|
||||
__all__ = ("GraphWidget",)
|
10
PlotterDialog/PlotterDialog.py
Normal file
10
PlotterDialog/PlotterDialog.py
Normal file
@ -0,0 +1,10 @@
|
||||
from PyQt5.QtWidgets import QDialog
|
||||
|
||||
class PlotterDIalog(QDialog):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
self.initUI()
|
||||
|
||||
def initUI(self):
|
||||
...
|
@ -0,0 +1,3 @@
|
||||
from .PlotterDialog import PlotterDialog
|
||||
|
||||
__all__ = ("PlotterDialog",)
|
Loading…
x
Reference in New Issue
Block a user