Skip to content

Commit

Permalink
Troubleshoot type error
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed Oct 23, 2023
1 parent 3080c4c commit 683d0b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neon_minerva/tests/skill_unit_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class SkillTestCase(unittest.TestCase):
skill_entrypoint = getenv("TEST_SKILL_ENTRYPOINT")
if not skill_entrypoint:
from ovos_plugin_manager.skills import find_skill_plugins
skill_entrypoints = find_skill_plugins().keys()
skill_entrypoints = list(find_skill_plugins().keys())
assert len(skill_entrypoints) == 1
skill_entrypoint = skill_entrypoints[0]

Expand Down

0 comments on commit 683d0b1

Please sign in to comment.