Every line of 'python else do nothing' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
51 def do_nothing(*args, **kw): 52 return
11 def do_nothing(*args, **kwargs): 12 """Mock for `HTMLReport` that doesn't do anything""" 13 pass
7 def do_nothing(): 8 """ empty """ 9 with open("") as ctx.obj: # [undefined-variable] 10 context.do() # [used-before-assignment] 11 context = None
16 @github_event_dispatcher.on("not_found") 17 @github_event_dispatcher.on("ping") 18 def do_nothing(data): 19 pass