removed over-indentation

This commit is contained in:
arbanhossain 2022-04-19 11:22:31 +06:00
parent 73554acfb0
commit 58ea48aa3b

View file

@ -1131,7 +1131,7 @@ def _load_plugins(options, config):
# Exclude any plugins that were specified on the command line
if options.exclude is not None:
plugin_list = [p for p in plugin_list
if p not in options.exclude.split(',')]
if p not in options.exclude.split(',')]
plugins.load_plugins(plugin_list)
return plugins