@@ -83,7 +83,7 @@ def generate_job_request(
8383 archive_system (str, optional): Archive system for job outputs. If "designsafe" is specified,
8484 uses "designsafe.storage.default". If None, uses app default.
8585 archive_path (str, optional): Archive directory path. Can be a full path or just a directory name
86- in MyData (e.g., "tapis-jobs-archive"). If None and archive_system is "designsafe",
86+ in MyData (e.g., "tapis-jobs-archive"). If None and archive_system is "designsafe",
8787 defaults to "${EffectiveUserId}/tapis-jobs-archive/${JobCreateDate}/${JobUUID}".
8888 extra_file_inputs (List[Dict[str, Any]], optional): Additional file inputs beyond the main input directory.
8989 extra_app_args (List[Dict[str, Any]], optional): Additional application arguments.
@@ -135,11 +135,11 @@ def generate_job_request(
135135 final_description = (
136136 description or app_details .description or f"dapi job for { app_details .id } "
137137 )
138-
138+
139139 # Handle archive system configuration
140140 archive_system_id = None
141141 archive_system_dir = None
142-
142+
143143 if archive_system :
144144 if archive_system .lower () == "designsafe" :
145145 archive_system_id = "designsafe.storage.default"
@@ -164,7 +164,7 @@ def generate_job_request(
164164 # Use app defaults
165165 archive_system_id = getattr (job_attrs , "archiveSystemId" , None )
166166 archive_system_dir = getattr (job_attrs , "archiveSystemDir" , None )
167-
167+
168168 job_req = {
169169 "name" : final_job_name ,
170170 "appId" : app_details .id ,
0 commit comments