Skip to content

Commit

Permalink
Add --include-basis-data param
Browse files Browse the repository at this point in the history
  • Loading branch information
FirestarJes committed Oct 11, 2024
1 parent b5e3757 commit eef4871
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ private RunParameters CreateParameters(SettlementReportRequestDto request, Marke
jobParameters.Add("--prevent-large-text-files");
}

if (request.IncludeBasisData)
{
jobParameters.Add("--include-basis-data");
}

return RunParameters.CreatePythonParams(jobParameters);
}

Expand Down

0 comments on commit eef4871

Please sign in to comment.