Skip to content

Commit

Permalink
attempt to satisfy CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pothiers committed Oct 7, 2024
1 parent 532730d commit 8c9ee23
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
7 changes: 1 addition & 6 deletions notebooks_tsqr/NightLog.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@
"from urllib.parse import urlencode\n",
"\n",
"import pandas as pd\n",
"# Only use packages available in the Rubin Science Platform\n",
"import requests\n",
"from matplotlib import pyplot as plt\n",
"\n",
Expand Down Expand Up @@ -294,11 +293,7 @@
"cell_type": "code",
"execution_count": null,
"id": "17",
"metadata": {
"jupyter": {
"outputs_hidden": true
}
},
"metadata": {},
"outputs": [],
"source": [
"# Display data from Exposure log. Display time log.\n",
Expand Down
3 changes: 2 additions & 1 deletion python/lsst/ts/logging_and_reporting/reports.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ def block_tickets_as_markdown(
for day, url_list in tickets.items():
mdstr += f"\n- {day}"
for ticket_url in url_list:
str = f'\n - [{ticket_url.replace(front,"")}]({ticket_url})'
tu_str = ticket_url.replace(front, "")
str = f"\n - [{tu_str}]({ticket_url})"
mdstr += str
return mdstr

Expand Down

0 comments on commit 8c9ee23

Please sign in to comment.