Skip to content

Commit

Permalink
fix issues for 0.2.4 pointed out by Sean Morrison
Browse files Browse the repository at this point in the history
  • Loading branch information
andycasey committed Feb 2, 2024
1 parent f7dd19a commit 91b7c11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions notebooks/20231011_sdss5_targeting.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"You will need the `sdss_semaphore` package (version ``0.2.2``) to easily interpret the SDSS flags. You can install it with:\n",
"You will need the `sdss_semaphore` package (version ``0.2.4``) to easily interpret the SDSS flags. You can install it with:\n",
"\n",
"```pip install sdss-semaphore==0.2.2```\n"
"```pip install sdss-semaphore==0.2.4```\n"
]
},
{
Expand Down Expand Up @@ -536,7 +536,7 @@
"\n",
"- `TargetingFlags.all_mappers`: a tuple of all unique mapper names;\n",
"- `TargetingFlags.all_programs`: a tuple of all unique program names;\n",
"- `TargetingFlags.all_names`: a tuple of all unique carton names;\n",
"- `TargetingFlags.all_carton_names`: a tuple of all unique carton names;\n",
"- `TargetingFlags.all_alt_names`: a tuple of all unique alternative names;\n",
"- `TargetingFlags.all_alt_programs`: a tuple of all unique alternative program names;\n",
"\n",
Expand Down Expand Up @@ -1037,7 +1037,7 @@
" print(f\"\\t{program}\")\n",
"\n",
"print(\"Cartons names\")\n",
"for name in flags.all_names:\n",
"for name in flags.all_carton_names:\n",
" print(f\"\\t{name}\")\n",
"\n",
"print(\"Alternative cartons names\")\n",
Expand Down

0 comments on commit 91b7c11

Please sign in to comment.