3 examples of 'do nothing python' in Python

Every line of 'do nothing python' 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.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
51def do_nothing(*args, **kw):
52 return
11def do_nothing(*args, **kwargs):
12 """Mock for `HTMLReport` that doesn't do anything"""
13 pass
7def do_nothing():
8 """ empty """
9 with open("") as ctx.obj: # [undefined-variable]
10 context.do() # [used-before-assignment]
11 context = None

Related snippets