Skip to content

Commit beadc9f

Browse files
committed
chore: typo
1 parent da81f68 commit beadc9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aea/cli/fetch.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def fetch(
7878
ctx.registry_type = registry
7979
try:
8080
do_fetch(ctx, public_id, alias)
81-
except NotAnAgentPacakge as e:
81+
except NotAnAgentPackage as e:
8282
raise click.ClickException(str(e)) from e
8383

8484

@@ -164,7 +164,7 @@ def fetch_agent_ipfs(
164164
ctx.cwd = str(target_dir)
165165

166166
if not Path(target_dir, DEFAULT_AEA_CONFIG_FILE).exists():
167-
raise NotAnAgentPacakge(
167+
raise NotAnAgentPackage(
168168
f"Downloaded packages at {target_dir} is not an agent package, please check hash"
169169
)
170170

@@ -279,5 +279,5 @@ def fetch_mixed(
279279
fetch_agent(ctx, public_id, alias=alias, target_dir=target_dir)
280280

281281

282-
class NotAnAgentPacakge(Exception):
282+
class NotAnAgentPackage(Exception):
283283
"""Raise when downloaded package is not an agent package."""

0 commit comments

Comments
 (0)