diff --git a/easybuild/framework/easyconfig/style.py b/easybuild/framework/easyconfig/style.py index bad6ab5bda..2e84c018df 100644 --- a/easybuild/framework/easyconfig/style.py +++ b/easybuild/framework/easyconfig/style.py @@ -137,6 +137,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)