in submitit/core/core.py [0:0]
def __init__(self, folder: tp.Union[str, Path], parameters: tp.Optional[tp.Dict[str, tp.Any]] = None):
self.folder = Path(folder).expanduser().absolute()
self.parameters = {} if parameters is None else parameters
# storage for the batch context manager, for batch submissions:
self._delayed_batch: tp.Optional[tp.List[tp.Tuple[Job[tp.Any], utils.DelayedSubmission]]] = None