Skip to content

Commit

Permalink
fix status.code=UNSET not working, may adde regression issues, use wi…
Browse files Browse the repository at this point in the history
…th caution
  • Loading branch information
jp-agenta committed Oct 25, 2024
1 parent 6df4625 commit ba73ebb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def _filters(filtering: FilteringDTO) -> list:
attribute = cast(attribute, UUID)
elif isinstance(value, str):
attribute = cast(attribute, String)
value = f'"{value}"'
# value = f'"{value}"' # WILL ADD THIS BACK AS SOON AS I FIGURE OUT WHY THE QUOTES WERE ADDED
elif isinstance(value, int):
attribute = cast(attribute, Float) # Yes, Float
elif isinstance(value, float):
Expand Down

0 comments on commit ba73ebb

Please sign in to comment.