Skip to content

Commit

Permalink
Fixed unit test running
Browse files Browse the repository at this point in the history
Python 3.8-3.10 need to import Any from typing
AIPlugIn is deprecated, changed to AIPlugin
  • Loading branch information
asgibson committed Nov 18, 2024
1 parent 009b321 commit 52b90c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion onair/src/ai_components/ai_plugin_abstract/ai_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@


from abc import ABC, abstractmethod
from typing import Any


class AIPlugIn(ABC):
class AIPlugin(ABC):
"""
This serves as a base for all plugins.
Expand Down

0 comments on commit 52b90c5

Please sign in to comment.