refactor(simulation): Add strict type hints to simulation modules

This commit is contained in:
2026-02-28 19:00:36 -05:00
parent 53c2bbfa81
commit ec91c90c15
4 changed files with 19 additions and 21 deletions

View File

@@ -4,7 +4,7 @@ import time
from simulation.sim_base import BaseSimulation, run_sim
class ExecutionSimulation(BaseSimulation):
def setup(self, project_name="SimProject"):
def setup(self, project_name: str = "SimProject") -> None:
super().setup(project_name)
if os.path.exists("hello.ps1"):
os.remove("hello.ps1")