Skip to content

Commit

Permalink
Removed subscript items from typing information for 3.8 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
asgibson committed Nov 18, 2024
1 parent 52b90c5 commit ef40520
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions onair/src/ai_components/ai_plugin_abstract/ai_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class AIPlugin(ABC):
Names for each data point in the OnAIR data frame.
"""

def __init__(self, _name: str, _headers: list[str]):
def __init__(self, _name: str, _headers: list):
"""
Initialize a new AIPlugIn object.
Expand All @@ -59,8 +59,8 @@ def __init__(self, _name: str, _headers: list[str]):
@abstractmethod
def update(
self,
low_level_data: list[float] = None,
high_level_data: dict[str, dict[str, Any]] = None,
low_level_data: list = None,
high_level_data: dict = None,
) -> None:
"""
Update the plugin's internal state with new data.
Expand Down

0 comments on commit ef40520

Please sign in to comment.