Skip to content

Commit

Permalink
Pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
iguinn committed Nov 5, 2024
1 parent aa2e4b5 commit 487fc1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lgdo/lh5/_serializers/read/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ def eval_field_mask(
this_field_mask = defaultdict(field_mask.default_factory)
sub_field_masks = {}

for field, val in field_mask.items():
field = field.strip("/")
for key, val in field_mask.items():
field = key.strip("/")
pos = field.find("/")
if pos < 0:
this_field_mask[field] = val
Expand Down

0 comments on commit 487fc1a

Please sign in to comment.