Skip to content

Commit 8a6709a

Browse files
committed
update f-string for python compatability
1 parent 2616e86 commit 8a6709a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sql_data_guard/restriction_verification.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def _create_new_condition(
7070
"""
7171
if restriction.get("operation") == "BETWEEN":
7272
operator = "BETWEEN"
73-
operand = f"{_format_value(restriction["values"][0])} AND {_format_value(restriction["values"][1])}"
73+
operand = f"{_format_value(restriction['values'][0])} AND {_format_value(restriction['values'][1])}"
7474
elif restriction.get("operation") == "IN":
7575
operator = "IN"
7676
values = restriction.get("values", [restriction.get("value")])

0 commit comments

Comments
 (0)