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 Feb 18, 2025
1 parent cbfcf8d commit ca61e96
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion piptools/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,9 @@ def _get_install_requirements(
def _get_reverse_dependencies(
resolver_result: Result,
) -> dict[str, set[str]]:
reverse_dependencies: collections.defaultdict[str, set[str]] = collections.defaultdict(set)
reverse_dependencies: collections.defaultdict[str, set[str]] = (
collections.defaultdict(set)
)

for candidate in resolver_result.mapping.values():
stripped_name = strip_extras(canonicalize_name(candidate.name))
Expand Down

0 comments on commit ca61e96

Please sign in to comment.