File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def get_valid_files(
7777 - Returns an empty list if the folder is empty or contains only reserved files.
7878 """
7979
80- # Validate instruction inside the folder
80+ # Validate instruction.txt inside the folder
8181 if not check_handshake (drive_api , folder_id ):
8282 print (f"[ERROR]: '{ target_folder } ' missing instruction.txt or upload not safe." )
8383 return None
Original file line number Diff line number Diff line change @@ -90,7 +90,10 @@ def orchestrate_module(
9090 module_report = report ["modules" ]
9191
9292 table_trackers = {
93- table_name : {"build_stage" : False , "validate_stage" : False }
93+ table_name : {
94+ "build_stage" : False ,
95+ "validate_stage" : False ,
96+ }
9497 for table_name in module_config ["tables" ]
9598 }
9699 module_report [module_name ] = {** table_trackers , "export" : False }
@@ -129,6 +132,7 @@ def orchestrate_module(
129132 try :
130133 if table_name not in module_config ["tables" ]:
131134 report ["status" ] = "failed"
135+
132136 return False
133137
134138 table_config = module_config ["tables" ][table_name ]
You can’t perform that action at this time.
0 commit comments