refactor(simulation): Add strict type hints to simulation modules
This commit is contained in:
@@ -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")
|
||||
|
||||
Reference in New Issue
Block a user