mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 01:57:13 +02:00
Fix PyLint
This commit is contained in:
@ -66,7 +66,7 @@ def _prune_packages(force, dry_run, silent, handler):
|
|||||||
for pkg in handler(dry_run=True)
|
for pkg in handler(dry_run=True)
|
||||||
]
|
]
|
||||||
items = sorted(items, key=itemgetter(1), reverse=True)
|
items = sorted(items, key=itemgetter(1), reverse=True)
|
||||||
reclaimed_space = sum([item[1] for item in items])
|
reclaimed_space = sum(item[1] for item in items)
|
||||||
if items and not silent:
|
if items and not silent:
|
||||||
click.echo(
|
click.echo(
|
||||||
tabulate(
|
tabulate(
|
||||||
|
Reference in New Issue
Block a user