Added OTP Activity Review WIP
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
# otp_workflow_screen.py
|
||||
|
||||
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.OTP_generate import OTPGenerator
|
||||
class OTPWorkflowScreen(Screen):
|
||||
"""Screen that handles the OTP generation workflow without agent selection."""
|
||||
|
||||
def __init__(self, selected_agents: List[Agent]):
|
||||
def __init__(self, selected_agents: Optional[List[Agent]]):
|
||||
super().__init__()
|
||||
self.selected_agents = selected_agents
|
||||
|
||||
|
||||
Reference in New Issue
Block a user