Commit d9756de5 authored by Hejing Li's avatar Hejing Li
Browse files

runs/base.py: fix class name

parent 5fc19e63
...@@ -42,10 +42,10 @@ class Run: ...@@ -42,10 +42,10 @@ class Run:
def __init__( def __init__(
self, self,
simulation: sim_base, simulation: sim_base.Simulation,
instantiation: inst_base.Instantiation, instantiation: inst_base.Instantiation,
prereq: Run | None = None, prereq: Run | None = None,
output: ExpOutput | None = None, output: output.SimulationOutput | None = None,
job_id: int | None = None, job_id: int | None = None,
): ):
self._simulation: sim_base.Simulation = simulation self._simulation: sim_base.Simulation = simulation
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment