use {} instead of dict literal according to pylint recommendation

This commit is contained in:
Evgenii Alekseev 2021-08-22 13:24:42 +03:00
parent 9d2a3bcbc1
commit 3922c55464

View File

@ -94,7 +94,7 @@ class Executor(Cleaner):
if package in requested and properties.filename is not None
}
else:
to_remove = dict()
to_remove = {}
for package, filename in to_remove.items():
remove_single(package, filename)