Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
eegli committed Jan 28, 2025
1 parent 1a4f92b commit 8e68bd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mblm/model/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def serialize_block(
) -> dict | list[dict]:
if not isinstance(block, list):
return block.model_dump(mode=info.mode)
return [b.model_dump() for b in block]
return [b.model_dump(mode=info.mode) for b in block]

def stage_blocks(self) -> list[StageBlock]:
if isinstance(self.block, list):
Expand Down

0 comments on commit 8e68bd1

Please sign in to comment.