Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/polylith/poetry/commands/check.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from collections import defaultdict
from pathlib import Path
from typing import List, Set, Union
from typing import DefaultDict, List, Set, Union

from cleo.helpers import option
from poetry.console.commands.command import Command
Expand All @@ -26,7 +26,7 @@

def packages_distributions(
poetry: Poetry, path: Union[Path, None]
) -> defaultdict[str, List[str]]:
) -> DefaultDict[str, List[str]]:
project_poetry = Factory().create_poetry(path) if path else poetry

env = EnvManager(project_poetry).get()
Expand Down