Skip to content

Commit

Permalink
chore(commands): type check, remove unused import
Browse files Browse the repository at this point in the history
  • Loading branch information
maugde committed Jan 29, 2025
1 parent efa83ea commit 131b44c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion antarest/study/storage/variantstudy/model/dbmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class VariantStudy(Study):
uselist=False,
cascade="all, delete, delete-orphan",
)
commands: t.List[CommandBlock] = relationship(
commands = relationship(
CommandBlock,
uselist=True,
order_by="CommandBlock.index",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
from antarest.study.storage.variantstudy.model.command_listener.command_listener import ICommandListener
from antarest.study.storage.variantstudy.model.dbmodel import VariantStudy
from antarest.study.storage.variantstudy.model.model import GenerationResultInfoDTO, NewDetailsDTO
from antarest.study.storage.variantstudy.variant_study_service import CommandNotifier

logger = logging.getLogger(__name__)

Expand Down

0 comments on commit 131b44c

Please sign in to comment.