From 7e1be86a19b185e3b1d3c6c4e6a9c5d53982190e Mon Sep 17 00:00:00 2001 From: tylerflex Date: Mon, 28 Mar 2022 17:18:52 -0700 Subject: [PATCH] fixed batch --- tidy3d/web/container.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tidy3d/web/container.py b/tidy3d/web/container.py index 213c42bce..d465e5f24 100644 --- a/tidy3d/web/container.py +++ b/tidy3d/web/container.py @@ -230,10 +230,6 @@ def __getitem__(self, task_name: TaskName) -> SimulationData: class Batch(WebContainer): """Interface for submitting several :class:`.Simulation` objects to sever.""" - simulations: Dict[TaskName, Simulation] - jobs: Dict[TaskName, Job] = None - folder_name: str = "default" - simulations: Dict[TaskName, Simulation] = pd.Field( ..., title="Simulations", @@ -241,7 +237,7 @@ class Batch(WebContainer): ) jobs: Dict[TaskName, Job] = pd.Field( - ..., + None, title="Simulations", description="Mapping of task names to individual Job object for each task in the batch. " "Set by ``Batch.upload``, leave as None.",