Skip to content

Commit

Permalink
Ignore "ambiguous variable name" warning for EasyConfig style check
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire committed Sep 13, 2024
1 parent fd0f489 commit c7d86a5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions easybuild/framework/easyconfig/style.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ def check_easyconfigs_style(easyconfigs, verbose=False):
# note that W291 has been replaced by our custom W299
options.ignore = (
'W291', # replaced by W299
'E741', # 'l' is considered an ambiguous name, but we use it often for 'lib'
)
options.verbose = int(verbose)

Expand Down

0 comments on commit c7d86a5

Please sign in to comment.