Skip to content

Commit

Permalink
fix(import): fix import path
Browse files Browse the repository at this point in the history
  • Loading branch information
briancaffey committed Mar 1, 2024
1 parent 317f9b6 commit 7fd6f2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/apps/core/db.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import psycopg2

from apps.core.db import from_secret
from apps.core.utils import from_secret


def create_database(database_name=None):
Expand Down
2 changes: 1 addition & 1 deletion backend/apps/core/management/commands/pre_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from django.core.management.base import BaseCommand
from django.core.management import call_command

from apps.core.utils import create_database
from apps.core.db import create_database


class Command(BaseCommand):
Expand Down

0 comments on commit 7fd6f2a

Please sign in to comment.