Browse Source

pylint eval-used

14.0
Luc De Meyer 6 years ago
committed by Saran440
parent
commit
d2f5156498
  1. 2
      report_xlsx_helper/report/abstract_report_xlsx.py

2
report_xlsx_helper/report/abstract_report_xlsx.py

@ -554,7 +554,7 @@ class AbstractReportXlsx(ReportXlsx):
render_space['datetime'] = datetime
# the use of eval is not a security thread as long as the
# col_specs template is defined in a python module
return eval(val, render_space) # pylint: disable=W8112
return eval(val, render_space) # pylint: disable=W0123,W8112
@staticmethod
def _rowcol_to_cell(row, col, row_abs=False, col_abs=False):

Loading…
Cancel
Save