Skip to content

Commit

Permalink
wat
Browse files Browse the repository at this point in the history
  • Loading branch information
Bee-Mar committed Nov 15, 2024
1 parent 007207b commit a624a0c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mmpm/magicmirror/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import json
import os
import sys
from datetime import UTC
from multiprocessing import cpu_count
from pathlib import Path, PosixPath
from re import sub
Expand Down Expand Up @@ -545,7 +546,7 @@ def health(cls):
reset: int = github_api["rate"]["reset"]
remaining: int = github_api["rate"]["remaining"]

reset_time = datetime.datetime.fromtimestamp(reset, datetime.UTC).strftime("%Y-%m-%d %H:%M:%S")
reset_time = datetime.datetime.fromtimestamp(reset, UTC).strftime("%Y-%m-%d %H:%M:%S")

if not remaining:
health["github"][
Expand Down

0 comments on commit a624a0c

Please sign in to comment.