瀏覽代碼

wxGUI: fix bad indentation (#784)

introduced in PR #772
nilason 4 年之前
父節點
當前提交
f7601c4ce5
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      gui/wxpython/wxgui.py

+ 4 - 4
gui/wxpython/wxgui.py

@@ -110,10 +110,10 @@ class GMApp(wx.App):
 
 
         return True
         return True
 
 
-        def OnExit(self):
-            """Clean up on exit"""
-            unregisterPid(os.getpid())
-            return super().OnExit()
+    def OnExit(self):
+        """Clean up on exit"""
+        unregisterPid(os.getpid())
+        return super().OnExit()
 
 
 
 
 def printHelp():
 def printHelp():