Fix flake8 E275 missing whitespace after keyword

This commit is contained in:
Jochen Sprickerhof 2022-07-31 09:14:17 +02:00
parent 42ef7c3406
commit eb79522a36
6 changed files with 11 additions and 11 deletions

View file

@ -816,7 +816,7 @@ def parse_yaml_metadata(mf, app):
"metadata because it is deprecated.")
.format(field=deprecated_field,
metapath=mf.name))
del(yamldata[deprecated_field])
del yamldata[deprecated_field]
if yamldata.get('Builds', None):
for build in yamldata.get('Builds', []):