Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dwest77a authored Feb 20, 2025
1 parent e01df7e commit 3936ee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tag_scanner/facets.py
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ def _lower_all_facets(self, facets: dict, reverse: bool = False) -> dict:
new_set = {}
for label, lset in fset.items():
if reverse:
new_set[label] = lset.lower()
new_set[label] = lset
else:
new_set[label.lower()] = lset
new_facets[facet] = new_set
Expand Down

0 comments on commit 3936ee8

Please sign in to comment.