Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
bastantoine committed Oct 19, 2024
1 parent 9ba9671 commit 059da5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backup_me/sources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from enum import Enum

from .base import BaseSource
from .db import MySQLDB, PostgresDB
from .db import DBSource, MySQLDB, PostgresDB
from .files import ArchiveType, RawFiles
from .http import HTTP

Expand All @@ -29,4 +29,5 @@ class SourceTypes(str, Enum):
"MySQLDB",
"PostgresDB",
"HTTP",
"DBSource",
]

0 comments on commit 059da5c

Please sign in to comment.