mirror of
https://github.com/rizinorg/cutter.git
synced 2025-02-21 14:16:08 +00:00
Remove unnecessary pass Statements
This commit is contained in:
parent
d2948c6888
commit
1ee7061c72
@ -50,11 +50,9 @@ class CutterIPythonKernel(IPythonKernel):
|
|||||||
|
|
||||||
def pre_handler_hook(self):
|
def pre_handler_hook(self):
|
||||||
self.interruptable = True
|
self.interruptable = True
|
||||||
pass
|
|
||||||
|
|
||||||
def post_handler_hook(self):
|
def post_handler_hook(self):
|
||||||
self.interruptable = False
|
self.interruptable = False
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class CutterIPKernelApp(IPKernelApp):
|
class CutterIPKernelApp(IPKernelApp):
|
||||||
|
@ -31,7 +31,6 @@ class IPyKernelInterfaceJupyter:
|
|||||||
if self.poll() is not None:
|
if self.poll() is not None:
|
||||||
return
|
return
|
||||||
time.sleep(0.1)
|
time.sleep(0.1)
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
class CutterInternalIPyKernelManager(IOLoopKernelManager):
|
class CutterInternalIPyKernelManager(IOLoopKernelManager):
|
||||||
|
Loading…
Reference in New Issue
Block a user