Skip to content

Commit c7d86a5

Browse files
committed
Ignore "ambiguous variable name" warning for EasyConfig style check
1 parent fd0f489 commit c7d86a5

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

easybuild/framework/easyconfig/style.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ def check_easyconfigs_style(easyconfigs, verbose=False):
126126
# note that W291 has been replaced by our custom W299
127127
options.ignore = (
128128
'W291', # replaced by W299
129+
'E741', # 'l' is considered an ambiguous name, but we use it often for 'lib'
129130
)
130131
options.verbose = int(verbose)
131132

0 commit comments

Comments
 (0)