Skip to content

Commit

Permalink
style: pre-commit fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Oct 30, 2023
1 parent a70a22b commit f4d881e
Show file tree
Hide file tree
Showing 4 changed files with 563 additions and 398 deletions.
12 changes: 10 additions & 2 deletions src/leds/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,12 @@ class Waveform_window(QWidget):

def __init__(self, browsers, ev):
super().__init__()
uic.loadUi(os.path.join(os.path.dirname(__file__,"layouts/legend_waveform_display.ui")), self)
uic.loadUi(
os.path.join(
os.path.dirname(__file__, "layouts/legend_waveform_display.ui")
),
self,
)
self.browsers = browsers
self.ev = ev

Expand Down Expand Up @@ -148,7 +153,10 @@ class MainWindow(QtWidgets.QMainWindow):

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
uic.loadUi(os.path.join(os.path.dirname(__file__,"layouts/legend_event_display2.ui")), self)
uic.loadUi(
os.path.join(os.path.dirname(__file__, "layouts/legend_event_display2.ui")),
self,
)
# Create the maptlotlib FigureCanvas object,
# which defines a single set of axes as self.axes.
self.canvas = MplCanvas(self, width=10, height=10, dpi=100)
Expand Down
Loading

0 comments on commit f4d881e

Please sign in to comment.