Added OTP Activity Review WIP

This commit is contained in:
2025-11-13 11:45:13 -05:00
parent 5cb079dad7
commit f0e77db414
11 changed files with 787 additions and 74 deletions
+2 -2
View File
@@ -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