Skip to content

Commit

Permalink
fix(example): replace single quotes with double quotes in query (#83)
Browse files Browse the repository at this point in the history
* fix: replace single quotes with double quotes.

* chore: black formatted
  • Loading branch information
0xbrayo authored May 23, 2024
1 parent 5c49cb2 commit c699f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aw_client/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def canonicalEvents(params: Union[DesktopQueryParams, AndroidQueryParams]) -> st
# Categorize
f"events = categorize(events, {classes_str});" if params.classes else "",
# Filter out selected categories
f"events = filter_keyvals(events, '$category', {cat_filter_str});"
f'events = filter_keyvals(events, "$category", {cat_filter_str});'
if params.filter_classes
else "",
]
Expand Down

0 comments on commit c699f43

Please sign in to comment.