This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
from datetime import datetime, time, timezone | |
from json import dumps, loads | |
from os.path import expanduser | |
from sys import stdin, stdout | |
from zoneinfo import ZoneInfo | |
def parse_due(dues: str) -> datetime: |