Skip to content

Commit cc9387b

Browse files
committed
fix: docker deployment
1 parent 14ef06a commit cc9387b

4 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/club.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
from discord.ext import commands
88
from discord.ext.commands import BadArgument
99

10-
from db.models import Club
1110
from src.client import ClubSchema # noqa TC001
11+
from src.db.models import Club
1212
from src.services.club import ClubExists, ClubService
1313
from src.settings import Settings
1414

File renamed without changes.
File renamed without changes.

src/services/club.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from discord import Embed, PermissionOverwrite, utils
77

8-
from db.models import Club
8+
from src.db.models import Club
99
from src.settings import Settings
1010

1111
if TYPE_CHECKING:

0 commit comments

Comments
 (0)