6 lines
145 B
Python
6 lines
145 B
Python
|
def filter_empty(param):
|
||
|
if param is not None:
|
||
|
if isinstance(param, str):
|
||
|
param = param.strip() or None
|
||
|
return param
|