File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -187,15 +187,17 @@ def _run_interface(self, runtime):
187
187
self ._out_dict ['provenance' ] = {}
188
188
self ._out_dict ['provenance' ].update (prov_dict )
189
189
190
- Path (out_file ).write_bytes (json .dumps (
191
- self ._out_dict ,
192
- option = (
193
- json .OPT_SORT_KEYS
194
- | json .OPT_INDENT_2
195
- | json .OPT_APPEND_NEWLINE
196
- | json .OPT_SERIALIZE_NUMPY
197
- ),
198
- ))
190
+ Path (out_file ).write_bytes (
191
+ json .dumps (
192
+ self ._out_dict ,
193
+ option = (
194
+ json .OPT_SORT_KEYS
195
+ | json .OPT_INDENT_2
196
+ | json .OPT_APPEND_NEWLINE
197
+ | json .OPT_SERIALIZE_NUMPY
198
+ ),
199
+ )
200
+ )
199
201
return runtime
200
202
201
203
Original file line number Diff line number Diff line change @@ -155,7 +155,6 @@ def _run_interface(self, runtime):
155
155
modality = self .inputs .modality ,
156
156
)
157
157
158
-
159
158
payload_str = orjson .dumps (
160
159
payload ,
161
160
option = (
You can’t perform that action at this time.
0 commit comments