Remove Explicit Return None
This transforms any return None statement into a return statement, as return statement with no value is equivalent to return None.
Also removes any return None or return statements that are the last statement in a function.
The transform is always safe to use and enabled by default. Disable by passing the remove_explicit_return_none=False argument to the python_minifier.minify() function,
or passing --no-remove-explicit-remove-none to the pyminify command.
Example
Input
def important(a):
if a > 3:
return a
if a < 2:
return None
a.adjust(1)
return None
Output
def important(a):
if a>3:return a
if a<2:return
a.adjust(1)