Added OTP Activity Review WIP
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import difflib
|
||||
import re
|
||||
from typing import List
|
||||
from typing import List, Optional
|
||||
|
||||
from textual.containers import Horizontal, Vertical
|
||||
from textual.css.query import NoMatches
|
||||
@@ -25,7 +25,7 @@ class MultiAgentSelector(Widget):
|
||||
super().__init__()
|
||||
self.selected_agents = selected_agents
|
||||
|
||||
def __init__(self, all_agents: List[Agent]):
|
||||
def __init__(self, all_agents: Optional[List[Agent]]):
|
||||
super().__init__()
|
||||
self.all_agents = all_agents
|
||||
self._match_type = "exact"
|
||||
|
||||
Reference in New Issue
Block a user