Added expected exported classes definitions

This commit is contained in:
2023-10-17 21:55:29 +03:00
parent 4e18a8d77b
commit 19b230254a
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",)