Skip to content

Commit

Permalink
feature(format): fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonStuff committed Apr 6, 2024
1 parent d205df6 commit 6b970d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.10
python-version: 3.10.14

- name: Install dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def run_mirror():

if __name__ == "__main__":
while True:
print("Running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()))
print("--- Running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) + " ---")
run_mirror()
print("Finished running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) + ". Sleeping for 30 seconds.")
print("--- Finished running mirror at " + time.strftime("%Y-%m-%d %H:%M:%S", time.gmtime()) + ". Sleeping for 30 seconds." + " ---")
time.sleep(30)

0 comments on commit 6b970d9

Please sign in to comment.