aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2024-11-15 18:20:44 +0100
committerKaran Jayachandra <mail@karanjayachandra.com>2024-11-15 18:20:44 +0100
commitbded222902eaf791143add8dc59b31ad4b772a2b (patch)
tree0cf6acb3a18c8a63cb7522dc830b39db0799cef5 /src
parent220911e4e6c117c61885853edcf2b0dfa14cdf27 (diff)
Removed an unnecessary import
Diffstat (limited to 'src')
-rw-r--r--src/match_up/model.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/match_up/model.py b/src/match_up/model.py
index 396c188..c42823b 100644
--- a/src/match_up/model.py
+++ b/src/match_up/model.py
@@ -1,6 +1,6 @@
from math import floor
from typing import Tuple
-from os.path import join, isfile
+from os.path import isfile
from dataclasses import dataclass
from importlib.resources import path
from sqlalchemy.orm import sessionmaker