Skip to content

Commit

Permalink
modify comments
Browse files Browse the repository at this point in the history
  • Loading branch information
tomerm-iguazio committed Jan 28, 2024
1 parent b8e7a84 commit e244d95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions storey/drivers.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,8 +549,8 @@ def _build_simplified_feature_store_request(self, aggregation_element):
@staticmethod
def _convert_python_obj_to_expression_value(value):
if isinstance(value, str):
# in order to handle ' in value.
# may impact performance
# in order to handle ' or " in a value.
# using both double (") and single (') quotation marks in the same value is not supported.
if "'" in value:
return f'"{value}"'
return f"'{value}'"
Expand Down

0 comments on commit e244d95

Please sign in to comment.