Added OTP Activity Review WIP
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from typing import List
|
||||
from typing import List, Optional
|
||||
|
||||
from textual.app import ComposeResult
|
||||
from textual.screen import Screen
|
||||
@@ -12,7 +12,7 @@ from widgets.resultsdisplay import ResultsDisplay
|
||||
class MoveAgentWorkflowScreen(Screen):
|
||||
"""Screen that handles the agent movement workflow."""
|
||||
|
||||
def __init__(self, all_agents: List[Agent]):
|
||||
def __init__(self, all_agents: Optional[List[Agent]]):
|
||||
super().__init__()
|
||||
self.all_agents = all_agents
|
||||
self.selected_agents = None
|
||||
|
||||
Reference in New Issue
Block a user