This literally does nothing.
do_nothing()
Returns None.
Source code in src/theboringlibrary/core.py
| def do_nothing() -> None:
"""Returns None."""
return NOTHING
|
print_nothing()
Prints nothing.
Source code in src/theboringlibrary/core.py
| def print_nothing() -> None: # pragma: no cover
"""Prints nothing."""
print("Nothing! ✨")
|
some_untested_fn()
It's actually tested now.
Source code in src/theboringlibrary/core.py
| def some_untested_fn() -> None:
"""It's actually tested now."""
return do_nothing()
|