Skip to content

Commit

Permalink
fix(forge): Fix "no module named 'forge.sdk.abilities'" (Significant-…
Browse files Browse the repository at this point in the history
  • Loading branch information
kfern authored Feb 1, 2024
1 parent 66e0c87 commit 266fe3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autogpts/forge/forge/actions/registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def register_abilities(self) -> None:
).replace("/", ".")
try:
module = importlib.import_module(
f".{action[:-3]}", package="forge.sdk.abilities"
f".{action[:-3]}", package="forge.actions"
)
for attr in dir(module):
func = getattr(module, attr)
Expand Down

0 comments on commit 266fe3a

Please sign in to comment.