We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2616e86 commit 8a6709aCopy full SHA for 8a6709a
src/sql_data_guard/restriction_verification.py
@@ -70,7 +70,7 @@ def _create_new_condition(
70
"""
71
if restriction.get("operation") == "BETWEEN":
72
operator = "BETWEEN"
73
- operand = f"{_format_value(restriction["values"][0])} AND {_format_value(restriction["values"][1])}"
+ operand = f"{_format_value(restriction['values'][0])} AND {_format_value(restriction['values'][1])}"
74
elif restriction.get("operation") == "IN":
75
operator = "IN"
76
values = restriction.get("values", [restriction.get("value")])
0 commit comments