Skip to content

Commit

Permalink
nexus8
Browse files Browse the repository at this point in the history
  • Loading branch information
garland committed Aug 19, 2024
1 parent c7b0bc0 commit 3564c12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nexus-trusted-traveler-scheduler-1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ jobs:
pip3 install -r requirements.txt
ls -l
echo "python3 ttp.py -u ${{ secrets.SLACK_BOT_TOKEN_NEXUS }}"
python3 ttp.py -u "${{ secrets.SLACK_BOT_TOKEN_NEXUS }}"
python3 ttp.py -u "${{ secrets.SLACK_BOT_TOKEN_NEXUS }}" -r 3m
echo "Finished and exiting"
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import time
import sqlite3
import sys

from typing import List

Expand Down Expand Up @@ -173,6 +174,8 @@ def _get_schedule(self, location_id: int) -> None:

self.notification_handler.new_appointment(location_id, schedule)

print("exiting...")
sys.exit()

except OSError:
return
Expand Down

0 comments on commit 3564c12

Please sign in to comment.