style: Format code to comply with linter rules

This commit is contained in:
Paul Gauthier (aider) 2024-10-01 14:22:49 -07:00
parent cf1e6e65c7
commit 1ff9157c95

View file

@ -419,7 +419,9 @@ class RepoMap:
ranked_definitions[(dst, ident)] += data["rank"]
ranked_tags = []
ranked_definitions = sorted(ranked_definitions.items(), reverse=True, key=lambda x: (x[1], x[0]))
ranked_definitions = sorted(
ranked_definitions.items(), reverse=True, key=lambda x: (x[1], x[0])
)
# dump(ranked_definitions)