Skip to content

Commit

Permalink
Fix minor style errors on the nb 01
Browse files Browse the repository at this point in the history
  • Loading branch information
haticekaratay committed Oct 17, 2023
1 parent 434401e commit 47c874c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@
" flux_err_combine[ii] = np.sqrt(np.sum(flux_err[:, ii]**2)) / len(flux_err[:, ii])\n",
"\n",
" # Normalize;\n",
" filt_data = ascii.read(f'{DIR_FIL}/NIRISS_{filt.upper()}.txt'\n",
" filt_data = ascii.read(f'{DIR_FIL}/NIRISS_{filt.upper()}.txt')\n",
" wave_filt = filt_data['Wavelength']\n",
" flux_filt = filt_data['FilterTrans']\n",
"\n",
Expand Down Expand Up @@ -555,7 +555,7 @@
" con = (wave > mask_lw[ff]) & (wave < mask_uw[ff])\n",
" plt.plot(wave[con], flux[con], ls='-', label=f'{grism} {filts[ff]}', color=cols[ff])\n",
"\n",
" filt_data = ascii.read(f'{DIR_FIL}/NIRISS_{filt.upper()}.txt'\n",
" filt_data = ascii.read(f'{DIR_FIL}/NIRISS_{filt.upper()}.txt')\n",
" wave_filt = filt_data['Wavelength']\n",
" flux_filt = filt_data['FilterTrans']\n",
"\n",
Expand Down Expand Up @@ -587,7 +587,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.13"
"version": "3.11.6"
}
},
"nbformat": 4,
Expand Down

0 comments on commit 47c874c

Please sign in to comment.