Skip to content

Commit

Permalink
Revert accidentally removed hunk
Browse files Browse the repository at this point in the history
  • Loading branch information
hosaka committed Nov 17, 2023
1 parent a4bef24 commit cbbedb4
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,16 @@ class MainWindow(QWidget):
def __init__(self):
super().__init__()

self.setLayout(QVBoxLayout())
self.lbl_status = QLabel("Idle", self)
self.layout().addWidget(self.lbl_status)

@asyncClose
async def closeEvent(self, event): # noqa:N802
async def closeEvent(self, event):
pass

@asyncSlot()
async def on_my_event(self):
async def onMyEvent(self):
pass


Expand Down

0 comments on commit cbbedb4

Please sign in to comment.