Skip to content

Commit

Permalink
line break for star name
Browse files Browse the repository at this point in the history
  • Loading branch information
beckynevin committed Jun 6, 2024
1 parent 1b2f720 commit e52914d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 02_Send_Flipbook_Variable_Stars_Imaging.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -677,8 +677,8 @@
" if (str.split(file, '.')[1] == 'png' and\n",

Check failure on line 677 in 02_Send_Flipbook_Variable_Stars_Imaging.ipynb

View workflow job for this annotation

GitHub Actions / Notebooks

W504 line break after binary operator
" str.split(file, '_')[0] == str(id_star)):\n",
" img_id = int(str.split(str.split(file, '_')[1], '.')[0])\n",
" star_name.append(str(id_star) + '_' +\n",
" str(img_id) + '.png')\n",
" star_name.append(\n",
" f\"{id_star} {img_id}.png\")\n",
"fig, axs = plt.subplots(1, 5, figsize=(20, 20))\n",
"print('star', stars_matchid_list[0])\n",
"for j in range(num_variable_images):\n",
Expand Down

0 comments on commit e52914d

Please sign in to comment.