Skip to content

Commit 3fa9255

Browse files
committed
Bugfix table name
1 parent b4b6390 commit 3fa9255

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tutorials/spherex/spherex_cutouts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ for row in results_table_serial:
257257
print("Time to create cutouts in serial mode: {:2.2f} minutes.".format((time.time() - t1) / 60))
258258
259259
# Drop rows that failed to download.
260-
results_table_serial = results_table_serial[result_table_serial["hdus"] != None]
260+
results_table_serial = results_table_serial[results_table_serial["hdus"] != None]
261261
```
262262

263263
### 7.2 Parallel Approach

0 commit comments

Comments
 (0)