Skip to content

Commit

Permalink
fix bookLedgerType on PDL
Browse files Browse the repository at this point in the history
  • Loading branch information
yellowbean committed Jul 20, 2023
1 parent efde247 commit da7d62c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion absbox/local/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ def mkBookLedgerType(x):
match x:
case ["PDL",defaults,ledgers]:
return mkTag(("PDL",[mkDs(defaults)
,[(ln,mkDs(ds)) for ln,ds in ledgers]]))
,[[ln,mkDs(ds)] for ln,ds in ledgers]]))
case _:
raise RuntimeError(f"Failed to match :{x}:mkBookLedgerType")

Expand Down

0 comments on commit da7d62c

Please sign in to comment.