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/users.py | |
parent | a42cefbbee178498afdd65ae0f774c2cdd99493f (diff) |
Remove unused imports
Diffstat (limited to 'jimbrella/users.py')
-rw-r--r-- | jimbrella/users.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/jimbrella/users.py b/jimbrella/users.py index 3276062..4a6348e 100644 --- a/jimbrella/users.py +++ b/jimbrella/users.py @@ -1,6 +1,4 @@ -import csv from .csv_table import CsvTable -from .lockfile import Lockfile from .exceptions import UsernameTakenError @@ -27,7 +25,6 @@ class Users(CsvTable): def __init__(self, path): self.path = path - self.lockfile = Lockfile(self.path) super().__init__( path, [ |