diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-02-05 16:39:41 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-02-05 16:39:41 +0800 |
commit | fcc3ce60bcfa57734a51723717fe681ee4bf1327 (patch) | |
tree | c8d883a6cd2b898fed85a7f717be34de242ded25 /jimbrella/umbrellas.py | |
parent | 14feb6a4378668d054d28a1335eacd2026b621dc (diff) |
Config format switched to .ini
Eliminated toml from dependency list
Diffstat (limited to 'jimbrella/umbrellas.py')
-rw-r--r-- | jimbrella/umbrellas.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/jimbrella/umbrellas.py b/jimbrella/umbrellas.py index 2525a31..b3a261d 100644 --- a/jimbrella/umbrellas.py +++ b/jimbrella/umbrellas.py @@ -3,7 +3,6 @@ from datetime import datetime, timezone, timedelta from dateutil.parser import isoparse from typing import Union from .utils import human_datetime, human_timedelta, CST -from .config import DUE_HOURS, ADMIN_LOG_PATH from .exceptions import * STATUSES = ["available", "lent", "overdue", "maintenance", "unknown"] |