File size: 144 Bytes
cfae47b
617e1d9
cfae47b
 
 
 
1
2
3
4
5
6
7
def _remove_null_params(params: dict):
    for p in list(params.keys()):
        if not params[p]:
            del params[p]

    return params