Skip to content
Snippets Groups Projects
Commit 6f446f6e authored by Bob Lantz's avatar Bob Lantz
Browse files

Make pylint happy.

parent 134a75ef
No related branches found
No related tags found
No related merge requests found
......@@ -107,8 +107,10 @@ def append( self, text ):
self.text.insert( 'end', text )
self.text.mark_set( 'insert', 'end' )
self.text.see( 'insert' )
outputHook = lambda x,y: True # make pylint happy
if self.outputHook:
self.outputHook( self, text )
outputHook = self.outputHook
outputHook( self, text )
def handleKey( self, event ):
"If it's an interactive command, send it to the node."
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment