Skip to content

Commit 3d6cb01

Browse files
committed
fix flake8 errors
1 parent 2e45daf commit 3d6cb01

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

DP1/300_Science_Demos/302_Stars_MilkyWay_LocalVolume/302_3_Derived_stellar_properties.ipynb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,7 @@
409409
"u_masks = [\n",
410410
" (gi > -1.1) & (gi <= -0.4),\n",
411411
" (gi > -0.4) & (gi <= 0.8),\n",
412-
" (gi > 0.8) & (gi<= 3.9)\n",
412+
" (gi > 0.8) & (gi <= 3.9)\n",
413413
"]\n",
414414
"u_outputs = [\n",
415415
" objtab[\"u_psfMag0\"] + 0.587*gi**2 + 1.424*gi + 0.758,\n",
@@ -520,7 +520,8 @@
520520
"metadata": {},
521521
"outputs": [],
522522
"source": [
523-
"plt.scatter(np.ma.filled(ug_sdss[sel], np.nan), np.ma.filled(gr_sdss[sel], np.nan),\n",
523+
"plt.scatter(np.ma.filled(ug_sdss[sel], np.nan),\n",
524+
" np.ma.filled(gr_sdss[sel], np.nan),\n",
524525
" c=10**np.ma.filled(log_teff, np.nan), cmap=plt.cm.jet_r)\n",
525526
"plt.xlabel('u-g')\n",
526527
"plt.ylabel('g-r')\n",

0 commit comments

Comments
 (0)