Skip to content

Commit 203ec4a

Browse files
committed
[FIX] mis_builder
Make the code compatible with Python 3.9 to allow using official Odoo Docker containers
1 parent 83e8888 commit 203ec4a

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

mis_builder/models/aep.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -543,4 +543,4 @@ def get_unallocated_pl(cls, companies, date):
543543
# TODO shoud we include here the accounts of type "unaffected"
544544
# or leave that to the caller?
545545
bals = cls._get_balances(cls.MODE_UNALLOCATED, companies, date, date)
546-
return tuple(map(sum, zip(*bals.values(), strict=True)))
546+
return tuple(map(sum, zip(*bals.values()))) # noqa: B905

mis_builder/models/expression_evaluator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def eval_expressions_by_account(self, expressions, locals_dict):
5858
vals = []
5959
drilldown_args = []
6060
name_error = False
61-
for expr, replaced_expr in zip(exprs, replaced_exprs, strict=True):
61+
for expr, replaced_expr in zip(exprs, replaced_exprs): # noqa: B905
6262
val = mis_safe_eval(replaced_expr, locals_dict)
6363
vals.append(val)
6464
if replaced_expr != expr:

mis_builder/models/kpimatrix.py

+2-5
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,7 @@ def set_values_detail_account(
234234
cell_tuple = []
235235
assert len(vals) == col.colspan
236236
assert len(drilldown_args) == col.colspan
237-
for val, drilldown_arg, subcol in zip(
238-
vals, drilldown_args, col.iter_subcols(), strict=True
239-
):
237+
for val, drilldown_arg, subcol in zip(vals, drilldown_args, col.iter_subcols()): # noqa: B905
240238
if isinstance(val, DataError):
241239
val_rendered = val.name
242240
val_comment = val.msg
@@ -347,11 +345,10 @@ def compute_comparisons(self):
347345
if not common_subkpis or cell.subcol.subkpi in common_subkpis
348346
]
349347
comparison_cell_tuple = []
350-
for val, base_val, comparison_subcol in zip(
348+
for val, base_val, comparison_subcol in zip( # noqa: B905
351349
vals,
352350
base_vals,
353351
comparison_col.iter_subcols(),
354-
strict=True,
355352
):
356353
# TODO FIXME average factors
357354
comparison = self._style_model.compare_and_render(
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Restore compatibility with python 3.9

0 commit comments

Comments
 (0)