All checks were successful
Build and Push Docker Image / build (push) Successful in 12m31s
Reviewed-on: #3 Co-authored-by: Mirko Milovanovic <mir_ko@me.com> Co-committed-by: Mirko Milovanovic <mir_ko@me.com>
5 lines
122 B
Python
5 lines
122 B
Python
def firstValid(*args, default):
|
|
for arg in args:
|
|
if arg is not None:
|
|
return arg
|
|
return default |