Skip to content

Commit

Permalink
models.history - rename to event
Browse files Browse the repository at this point in the history
  • Loading branch information
MatteoCampinoti94 committed Oct 17, 2024
1 parent 1c9f1cf commit 699db12
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion acacore/database/files_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

from pydantic import BaseModel

from acacore.models.event import Event
from acacore.models.file import ConvertedFile
from acacore.models.file import OriginalFile
from acacore.models.history import Event
from acacore.models.metadata import Metadata
from acacore.models.reference_files import TActionType

Expand Down
2 changes: 1 addition & 1 deletion acacore/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from . import event
from . import file
from . import history
from . import metadata
from . import reference_files
File renamed without changes.
2 changes: 1 addition & 1 deletion acacore/utils/click.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from click import Context
from click import Parameter

from acacore.models.history import Event
from acacore.models.event import Event
from acacore.utils.helpers import ExceptionManager
from acacore.utils.log import setup_logger

Expand Down

0 comments on commit 699db12

Please sign in to comment.