From b59df659c93ecead5f585cb03739a31327dbff91 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Wed, 8 May 2024 14:14:17 +0200 Subject: [PATCH] pep8 --- scripts/profile-time.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/profile-time.py b/scripts/profile-time.py index c791900d..34123a73 100644 --- a/scripts/profile-time.py +++ b/scripts/profile-time.py @@ -110,10 +110,7 @@ def main(argv=None): print( tabulate.tabulate( - [ - (counter, humanize.intcomma(count)) - for counter, count in capa.perf.counters.most_common() - ], + [(counter, humanize.intcomma(count)) for counter, count in capa.perf.counters.most_common()], headers=["feature class", "evaluation count"], tablefmt="github", )