Skip to content

Commit

Permalink
Testing II
Browse files Browse the repository at this point in the history
  • Loading branch information
illusional committed Apr 2, 2024
1 parent 9e42a0f commit 6cf93d3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions models/models/billing.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def from_dict(cls, d: dict):
],
seq_groups=[
AnalysisCostRecordSeqGroup.from_dict(row)
for row in d.get('seq_groups', [])
for row in d.get('seq_groups') or []
],
)

Expand Down Expand Up @@ -522,19 +522,19 @@ def from_dict(cls, d: dict):
skus=[AnalysisCostRecordSku.from_dict(row) for row in d.get('skus') or []],
seq_groups=[
AnalysisCostRecordSeqGroup.from_dict(row)
for row in d.get('seq_groups', [])
for row in d.get('seq_groups') or []
],
wdl_tasks=[
AnalysisCostRecordWdlTask.from_dict(row)
for row in d.get('wdl_tasks', [])
for row in d.get('wdl_tasks') or []
],
cromwell_sub_workflows=[
AnalysisCostRecordCromwellSubworkflow.from_dict(row)
for row in d.get('cromwell_sub_workflows', [])
for row in d.get('cromwell_sub_workflows') or []
],
cromwell_workflows=[
AnalysisCostRecordCromwellWorkflow.from_dict(row)
for row in d.get('cromwell_workflows', [])
for row in d.get('cromwell_workflows') or []
],
dataproc=d.get('dataproc'),
)

0 comments on commit 6cf93d3

Please sign in to comment.