(F841) Local variable name is assigned to but never used
ThibFrgsGmz opened this issue · 1 comments
ThibFrgsGmz commented
F´ Version | devel |
Affected Component | string_util.py |
Problem Description
Ruff linter spotted one issue in:
src/fprime/util/string_util.py:95:26: F841 [*] Local variable `e` is assigned to but never used
According to Flake 8: "A local variable in your function was defined but is not being used. This local variable should be removed."
Ref: https://www.flake8rules.com/rules/F841.html
Expected Behavior
The variable should be used or be removed.
PS: can be tagged as Good First Issue
stepanzubkov commented
Hi, can I take this issue?