Added expected exported classes definitions

This commit is contained in:
Dmitriy Shishkov 2023-10-17 21:55:29 +03:00
parent 4e18a8d77b
commit 19b230254a
Signed by: dm1sh
GPG Key ID: 027994B0AA357688
4 changed files with 21 additions and 0 deletions

View File

@ -0,0 +1,5 @@
from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg
class GraphWidget(FigureCanvasQTAgg):
def __init__(self, *args):
...

View File

@ -0,0 +1,3 @@
from .GraphWidget import GraphWidget
__all__ = ("GraphWidget",)

View File

@ -0,0 +1,10 @@
from PyQt5.QtWidgets import QDialog
class PlotterDIalog(QDialog):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
...

View File

@ -0,0 +1,3 @@
from .PlotterDialog import PlotterDialog
__all__ = ("PlotterDialog",)