diff options
author | Frederick Yin <fkfd@fkfd.me> | 2021-10-28 10:12:05 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2021-10-28 10:12:05 +0800 |
commit | 59ccf598739353e94a71391a7807923f78a71f15 (patch) | |
tree | 1c7bd372acb23d33d506d4fbc20d0ac726002484 /jimbrella/database.py | |
parent | a42cefbbee178498afdd65ae0f774c2cdd99493f (diff) |
Remove unused imports
Diffstat (limited to 'jimbrella/database.py')
-rw-r--r-- | jimbrella/database.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/jimbrella/database.py b/jimbrella/database.py index 7f82799..9ca3c5b 100644 --- a/jimbrella/database.py +++ b/jimbrella/database.py @@ -1,9 +1,6 @@ -import csv -import os from datetime import datetime, timedelta from .csv_table import CsvTable -from .lockfile import Lockfile -from .utils import identity, human_datetime, human_timedelta +from .utils import human_datetime, human_timedelta from .config import DUE_HOURS from .exceptions import * |