Skip to content

Commit 5388a99

Browse files
committed
Format code
1 parent 8145087 commit 5388a99

1 file changed

Lines changed: 12 additions & 2 deletions

File tree

src/Utilities.jl

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,12 @@ function _decode_data(proc::P, data, apply_to::AS) where {P <: DataProcessor, AS
9494
end
9595
end
9696

97-
function _initialize_and_encode_data!(proc::P, data, structure_mats, apply_to::AS) where {P <: DataProcessor, AS <: AbstractString}
97+
function _initialize_and_encode_data!(
98+
proc::P,
99+
data,
100+
structure_mats,
101+
apply_to::AS,
102+
) where {P <: DataProcessor, AS <: AbstractString}
98103
if P isa PairedDataContainerProcessor
99104
initialize_processor!(proc, data..., structure_mats..., apply_to)
100105
else
@@ -188,7 +193,12 @@ function initialize_and_encode_with_schedule!(
188193
for (processor, apply_to) in encoder_schedule
189194
@info "Initialize encoding of data: \"$(apply_to)\" with $(processor)"
190195

191-
processed = _initialize_and_encode_data!(processor, processed_io_pairs, (processed_input_structure_mat, processed_output_structure_mat), apply_to)
196+
processed = _initialize_and_encode_data!(
197+
processor,
198+
processed_io_pairs,
199+
(processed_input_structure_mat, processed_output_structure_mat),
200+
apply_to,
201+
)
192202

193203
if apply_to == "in"
194204
processed_input_structure_mat = encode_structure_matrix(processor, processed_input_structure_mat)

0 commit comments

Comments
 (0)