Skip to content

Commit

Permalink
fix: 🐛 MAX_DATETIME
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoQi99 committed Mar 26, 2024
1 parent 36e86ed commit 0b6e0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyencrypt/license.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

DATE_FORMAT = '%Y-%m-%dT%H:%M:%S%z'
MIN_DATETIME = datetime.now().astimezone()
MAX_DATETIME = datetime.max.replace(year=9998).astimezone()
MAX_DATETIME = datetime(year=2999, month=12, day=31).astimezone()


def get_mac_address() -> str:
Expand Down

0 comments on commit 0b6e0c2

Please sign in to comment.