Skip to content

Commit

Permalink
PEP8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas A Caswell committed Jan 18, 2013
1 parent ee4feb3 commit 0729489
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/matplotlib/backends/backend_qt4.py
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ def idle_draw(*args):
class MainWindow(QtGui.QMainWindow):
def closeEvent(self, event):
self.emit(QtCore.SIGNAL('closing()'))
QtGui.QMainWindow.closeEvent(self,event)
QtGui.QMainWindow.closeEvent(self, event)

class FigureManagerQT( FigureManagerBase ):
"""
Expand Down

0 comments on commit 0729489

Please sign in to comment.