|
58 | 58 | from empathy_llm_toolkit.wizards.sales_wizard import SalesWizard # noqa: E402 |
59 | 59 | from empathy_llm_toolkit.wizards.technology_wizard import TechnologyWizard # noqa: E402 |
60 | 60 | from empathy_software_plugin.wizards.advanced_debugging_wizard import ( |
61 | | - AdvancedDebuggingWizard, # noqa: E402 |
62 | | -) |
| 61 | + AdvancedDebuggingWizard, |
| 62 | +) # noqa: E402 |
63 | 63 | from empathy_software_plugin.wizards.agent_orchestration_wizard import ( |
64 | | - AgentOrchestrationWizard, # noqa: E402 |
65 | | -) |
| 64 | + AgentOrchestrationWizard, |
| 65 | +) # noqa: E402 |
66 | 66 | from empathy_software_plugin.wizards.ai_collaboration_wizard import ( |
67 | | - AICollaborationWizard, # noqa: E402 |
68 | | -) |
| 67 | + AICollaborationWizard, |
| 68 | +) # noqa: E402 |
69 | 69 | from empathy_software_plugin.wizards.ai_context_wizard import AIContextWindowWizard # noqa: E402 |
70 | 70 | from empathy_software_plugin.wizards.ai_documentation_wizard import ( |
71 | | - AIDocumentationWizard, # noqa: E402 |
72 | | -) |
| 71 | + AIDocumentationWizard, |
| 72 | +) # noqa: E402 |
73 | 73 | from empathy_software_plugin.wizards.enhanced_testing_wizard import ( |
74 | | - EnhancedTestingWizard, # noqa: E402 |
75 | | -) |
| 74 | + EnhancedTestingWizard, |
| 75 | +) # noqa: E402 |
76 | 76 |
|
77 | 77 | # AI wizards (12 total) |
78 | 78 | from empathy_software_plugin.wizards.multi_model_wizard import MultiModelWizard # noqa: E402 |
79 | 79 | from empathy_software_plugin.wizards.performance_profiling_wizard import ( |
80 | | - PerformanceProfilingWizard as AIPerformanceWizard, # noqa: E402 |
81 | | -) |
| 80 | + PerformanceProfilingWizard as AIPerformanceWizard, |
| 81 | +) # noqa: E402 |
82 | 82 | from empathy_software_plugin.wizards.prompt_engineering_wizard import ( |
83 | | - PromptEngineeringWizard, # noqa: E402 |
84 | | -) |
| 83 | + PromptEngineeringWizard, |
| 84 | +) # noqa: E402 |
85 | 85 | from empathy_software_plugin.wizards.rag_pattern_wizard import RAGPatternWizard # noqa: E402 |
86 | 86 | from empathy_software_plugin.wizards.security_analysis_wizard import ( |
87 | | - SecurityAnalysisWizard, # noqa: E402 |
88 | | -) |
| 87 | + SecurityAnalysisWizard, |
| 88 | +) # noqa: E402 |
89 | 89 |
|
90 | 90 | logging.basicConfig(level=logging.INFO) |
91 | 91 | logger = logging.getLogger(__name__) |
|
0 commit comments