Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
vgvoleg committed Nov 5, 2024
1 parent 5d11d0a commit 04761ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ydb_sqlalchemy/sqlalchemy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -845,7 +845,7 @@ def __merge_parameters_values_and_types(
if key in types:
result[key] = ydb.TypedValue(value_map[key], types[key])
else:
result[key] = values[key]
result[key] = value_map[key]
result_list.append(result)
return result_list if execute_many else result_list[0]

Expand Down

0 comments on commit 04761ca

Please sign in to comment.