Skip to content

Commit

Permalink
fix: check_dependencies -> .without_hash()
Browse files Browse the repository at this point in the history
  • Loading branch information
Karrenbelt committed Nov 16, 2022
1 parent 064b845 commit cdbb001
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aea/cli/check_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ def check_dependencies(
data = unified_yaml_load(configuration_file)

def _add_package_type(package_type: PackageType, public_id_str: str) -> PackageId:
return PackageId(package_type, PublicId.from_str(public_id_str))
return PackageId(package_type, PublicId.from_str(public_id_str).without_hash())

def _get_package_ids(
package_type: PackageType, public_ids: Set[PublicId]
Expand Down

0 comments on commit cdbb001

Please sign in to comment.