OreosLab / checkinpanel

Audit required: Use of eval PYL-W0123
Security
Major
2 years ago2 years old
Use of eval
259                        left_part = text[:operator_pos]
260                        right_part = text[operator_pos + 1 :]
261                        return (
262                            eval(263                                "{left} {operator} {right}".format(
264                                    left=left_part, operator=operator, right=right_part
265                                )