Skip to content

Commit b434e7f

Browse files
committed
Fixes
1 parent 16bec18 commit b434e7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reportportal_client/helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def get_function_params(func, args, kwargs):
178178
result[arg_name] = str(args[i])
179179
for arg_name, arg_value in kwargs.items():
180180
result[arg_name] = str(arg_value)
181-
return result
181+
return result if len(result.items()) > 0 else None
182182

183183

184184
__POSITIVE_STATUSES = ('PASSED', 'SKIPPED', 'STOPPED', 'INFO', 'WARN')

0 commit comments

Comments
 (0)