Skip to content

Commit

Permalink
Enable ruff's C414 rule
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospri committed Oct 17, 2024
1 parent d5d1100 commit 6ae907e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def connected_subgraphs(edges):

# Discard our internal ids for the sub-graphs as they have no meaning
# outside this method. Sort them to make it easier on the eye.
return sorted(sorted(list(nodes)) for nodes in group_to_nodes.values())
return sorted(sorted(nodes) for nodes in group_to_nodes.values())


def pick_name(names):
Expand Down
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ ignore = [
"C405",
"C401",
"E721",
"C414",
]

[tool.ruff.lint.per-file-ignores]
Expand Down

0 comments on commit 6ae907e

Please sign in to comment.