Skip to content

Commit

Permalink
fix init
Browse files Browse the repository at this point in the history
closes #119 maybe
  • Loading branch information
JarbasAl authored Jul 14, 2023
1 parent 9611b61 commit ecc409d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ovos_workshop/skills/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ def __init__(self, name: Optional[str] = None,
self.__original_converse = self.converse

# yay, following python best practices again!
if self.skill_id and self.bus:
self._startup(self.bus, self.skill_id)
if self.skill_id and bus:
self._startup(bus, self.skill_id)

@classproperty
def runtime_requirements(self) -> RuntimeRequirements:
Expand Down

0 comments on commit ecc409d

Please sign in to comment.