Skip to content

Commit

Permalink
Temporary fix for Mypy and latest packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
ofek committed Jun 19, 2024
1 parent 64005a2 commit e8fce8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/hatchling/dep/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def dependencies_in_sync(
if sys_path is None:
sys_path = sys.path
if environment is None:
environment = default_environment()
environment = default_environment() # type: ignore

installed_distributions = DistributionCache(sys_path)
return all(dependency_in_sync(requirement, environment, installed_distributions) for requirement in requirements)
return all(dependency_in_sync(requirement, environment, installed_distributions) for requirement in requirements) # type: ignore

0 comments on commit e8fce8a

Please sign in to comment.