Skip to content

Commit

Permalink
Created the BasePopup class in popups.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ahsoka committed Jul 11, 2021
1 parent 51309fb commit 4c3960d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion beskar/popups.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .utils import apply_voltage, get_number_of_devices
from .utils import BaseInteractable, apply_voltage, get_number_of_devices
from PyQt6 import QtCore, QtWidgets, QtTest
from nidaqmx.system import System
from .constants import offset
Expand All @@ -8,6 +8,11 @@
import random


class BasePopup(BaseInteractable, QtWidgets.QDialog):
def super_(self):
super().__init__(self.main_window)


class MultipleSEALKitsPopup(QtWidgets.QDialog):
def __init__(self, parent):
super().__init__(parent)
Expand Down

0 comments on commit 4c3960d

Please sign in to comment.