Skip to content

Commit

Permalink
chore: type
Browse files Browse the repository at this point in the history
  • Loading branch information
antazoey committed Sep 26, 2023
1 parent b9f500e commit 220570e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape/managers/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def validate_deployments(cls, data: Dict):
root_data = data.get("__root__", data)
valid_ecosystems = root_data.pop("valid_ecosystems", {})
valid_networks = root_data.pop("valid_networks", {})
valid_data = {}
valid_data: Dict = {}
for ecosystem_name, networks in root_data.items():
if ecosystem_name not in valid_ecosystems:
logger.warning(f"Invalid ecosystem '{ecosystem_name}' in deployments config.")
Expand Down

0 comments on commit 220570e

Please sign in to comment.