fix: pickle BufferedReader TypeError in upload feature

This commit is contained in:
debugtalk
2020-07-30 11:40:32 +08:00
parent 0d6924fd86
commit bde543ce8d
3 changed files with 8 additions and 2 deletions

View File

@@ -207,7 +207,7 @@ def merge_variables(
step_new_variables[key] = value
merged_variables = copy.deepcopy(variables_to_be_overridden)
merged_variables = copy.copy(variables_to_be_overridden)
merged_variables.update(step_new_variables)
return merged_variables