File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 177
177
"metadata": {},
178
178
"outputs": [],
179
179
"source": [
180
- "with s3.open_input_file(\"{bucket}/{path_data}/description-indiv.csv\") as file:\n",
180
+ "with s3.open_input_file(f \"{bucket}/{path_data}/description-indiv.csv\") as file:\n",
181
181
" description_indiv = csv.read_csv(file, parse_options=csv.ParseOptions(delimiter=\";\")).to_pandas()\n",
182
182
"\n",
183
- "with s3.open_input_file(\"{bucket}/{path_data}/habitudes-indiv.csv\") as file:\n",
183
+ "with s3.open_input_file(f \"{bucket}/{path_data}/habitudes-indiv.csv\") as file:\n",
184
184
" habitudes_indiv = csv.read_csv(file, parse_options=csv.ParseOptions(delimiter=\";\")).to_pandas()\n",
185
185
"\n",
186
- "with s3.open_input_file(\"{bucket}/{path_data}/actphys-sedent.csv\") as file:\n",
186
+ "with s3.open_input_file(f \"{bucket}/{path_data}/actphys-sedent.csv\") as file:\n",
187
187
" actphys_sedent = csv.read_csv(file, parse_options=csv.ParseOptions(delimiter=\";\")).to_pandas()\n",
188
188
"\n",
189
- "with s3.open_input_file(\"{bucket}/{path_data}/fpq.csv\") as file:\n",
189
+ "with s3.open_input_file(f \"{bucket}/{path_data}/fpq.csv\") as file:\n",
190
190
" fpq = csv.read_csv(file, parse_options=csv.ParseOptions(delimiter=\";\")).to_pandas()\n",
191
191
"\n",
192
192
"\n",
You can’t perform that action at this time.
0 commit comments