Skip to content

Commit

Permalink
Created BasePage class in pages.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahsoka committed Jul 11, 2021
1 parent 2fbefba commit 078adb3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion beskar/pages.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import apply_voltage, interact_with_LEDs, LED_position_gen, TwoDQBarDataItem
from .utils import BaseInteractable, apply_voltage, interact_with_LEDs, LED_position_gen, TwoDQBarDataItem
from PyQt6 import QtCore, QtWidgets, QtCharts, QtGui, QtDataVisualization, QtTest
from .constants import offset
from fractions import Fraction
Expand All @@ -12,6 +12,11 @@
import time


class BasePage(BaseInteractable):
def super_(self):
super().__init__()


class ApplyVoltagePage(QtWidgets.QWidget):
def __init__(self, parent):
super().__init__(parent)
Expand Down

0 comments on commit 078adb3

Please sign in to comment.