Skip to content

Commit

Permalink
use update
Browse files Browse the repository at this point in the history
  • Loading branch information
malmans2 committed Apr 29, 2024
1 parent a58df0d commit 3fe1f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/lint-tags.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def main(paths: list[Path]) -> None:
required_tags = REQUIRED_TAGS.get(cell["cell_type"], set())
if not required_tags <= tags:
write = True
tags |= required_tags
tags.update(required_tags)
cell["metadata"]["tags"] = list(tags)

if write:
Expand Down

0 comments on commit 3fe1f72

Please sign in to comment.