Remove unnecessary pass Statements

This commit is contained in:
Florian Märkl 2018-05-24 10:41:01 +02:00
parent d2948c6888
commit 1ee7061c72
2 changed files with 0 additions and 3 deletions

View File

@ -50,11 +50,9 @@ class CutterIPythonKernel(IPythonKernel):
def pre_handler_hook(self):
self.interruptable = True
pass
def post_handler_hook(self):
self.interruptable = False
pass
class CutterIPKernelApp(IPKernelApp):

View File

@ -31,7 +31,6 @@ class IPyKernelInterfaceJupyter:
if self.poll() is not None:
return
time.sleep(0.1)
pass
class CutterInternalIPyKernelManager(IOLoopKernelManager):