Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
cmutel committed Jun 12, 2024
1 parent 266626d commit 3607b88
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bw_simapro_csv/blocks/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from ..parameters import (
FormulaSubstitutor,
add_prefix_to_uppercase_input_parameters,
substitute_in_formulas,
prepare_formulas,
substitute_in_formulas,
)
from ..utils import asboolean, asdate, get_key_multiline_values, jump_to_nonempty
from .base import SimaProCSVUncertainBlock
Expand Down Expand Up @@ -119,7 +119,9 @@ def resolve_local_parameters(self, global_params: dict, substitutes: dict) -> No
}

if "Calculated parameters" in self.blocks:
add_prefix_to_uppercase_input_parameters(prepare_formulas(self.blocks["Calculated parameters"].parsed, self.header))
add_prefix_to_uppercase_input_parameters(
prepare_formulas(self.blocks["Calculated parameters"].parsed, self.header)
)
substitutes = substitutes | {
o["original_name"].upper(): o["name"]
for o in self.blocks["Calculated parameters"].parsed
Expand Down

0 comments on commit 3607b88

Please sign in to comment.