Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 3, 2023
1 parent e212634 commit 7411030
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion legate/util/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ def expand_range(value: str) -> tuple[int, ...]:
).read()

flattened = []
for x in (expand_range(value) for value in line.strip().split(",")):
for x in (
expand_range(value) for value in line.strip().split(",")
):
flattened += [y for y in x]
sibling_sets.add(tuple(sorted(flattened)))
return tuple(
Expand Down

0 comments on commit 7411030

Please sign in to comment.