Skip to content

Commit bb0d3f2

Browse files
committed
fix flake8 E741 - ambiguous variable name
1 parent 5310cb9 commit bb0d3f2

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

OMPython/OMTypedParser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
)
5353

5454

55-
def convertNumbers(s, l, toks):
55+
def convertNumbers(s, loc, toks):
5656
n = toks[0]
5757
try:
5858
return int(n)

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,4 @@ Download = "https://pypi.org/project/OMPython/#files"
3636
[tool.flake8]
3737
extend-ignore = [
3838
'E501', # line too long
39-
'E741', # ambiguous variable name 'l'
4039
]

0 commit comments

Comments
 (0)