Skip to content

Commit d69006b

Browse files
authored
Fix weird __wrapped__ missing attribute
1 parent f86e2ea commit d69006b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/napari_deeplabcut/_widgets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def settings(self):
380380
return QSettings()
381381

382382
def start_tutorial(self):
383-
Tutorial(self.viewer.window._qt_window.__wrapped__).show()
383+
Tutorial(self.viewer.window._qt_window.current()).show()
384384

385385
def _load_config(self):
386386
config = QFileDialog.getOpenFileName(

0 commit comments

Comments
 (0)