Skip to content

Commit

Permalink
test(cpg_flow_test/stages.py): print dict(inputs)
Browse files Browse the repository at this point in the history
  • Loading branch information
violetbrina committed Dec 13, 2024
1 parent d6f74aa commit cd9a5ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpg_flow_test/stages.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ def queue_jobs(self, cohort: Cohort, inputs: StageInput) -> StageOutput | None:
b = get_batch()

print('-----INPUTS-----')
print(inputs.as_dict())
print(dict(inputs))

sg_outputs = self.expected_outputs(cohort)
no_evens_output_path = str(sg_outputs['no_evens'])
Expand Down

0 comments on commit cd9a5ce

Please sign in to comment.