Skip to content

Commit 98d3f3d

Browse files
fixed download script for india_nss_health_ailments (#1846)
fixed download script for india_nss_health_ailments
1 parent 2e49277 commit 98d3f3d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

statvar_imports/india_ndap/india_nss_health_ailments/download_script.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ def preprocess_and_save(data: List[Tuple], output_dir: str) -> None:
129129
df = pd.DataFrame(data, columns=_OUTPUT_COLUMNS)
130130

131131
os.makedirs(output_dir, exist_ok=True)
132-
output_path = os.path.join(output_dir, 'india_nss_health_ailments.csv') df.to_csv(output_path, index=False)
132+
output_path = os.path.join(output_dir, 'india_nss_health_ailments.csv')
133+
df.to_csv(output_path, index=False)
133134
logging.info('Data saved to %s', output_path)
134135

135136

0 commit comments

Comments
 (0)