Skip to content

Commit

Permalink
chore: support newer pyee (#303)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray authored Nov 21, 2024
1 parent 3c73316 commit 32b9fe1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/unittests/test_event_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@

import unittest
import time
from pyee import ExecutorEventEmitter
try:
from pyee import ExecutorEventEmitter
except (ImportError, ModuleNotFoundError):
from pyee.executor import ExecutorEventEmitter

from unittest.mock import MagicMock, patch
from ovos_utils.messagebus import FakeBus
Expand Down

0 comments on commit 32b9fe1

Please sign in to comment.