Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <campbell@blender.org>2022-04-19 08:25:55 +0300
committerCampbell Barton <campbell@blender.org>2022-04-19 08:25:55 +0300
commit3035235defe0f3a6314e10ceab4c94be86086344 (patch)
treec9c5b22f42c785da4dfad027d648b0cd197e1796 /tests/performance/api/config.py
parent58d86527ae283b94ba18f54b1fcef1cb8063c910 (diff)
Cleanup: run autopep8 on tests/
Diffstat (limited to 'tests/performance/api/config.py')
-rw-r--r--tests/performance/api/config.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/tests/performance/api/config.py b/tests/performance/api/config.py
index 03d699cfdfb..6d095065123 100644
--- a/tests/performance/api/config.py
+++ b/tests/performance/api/config.py
@@ -68,11 +68,14 @@ class TestQueue:
def rows(self, use_revision_columns: bool) -> List:
# Generate rows of entries for printing and running.
- entries = sorted(self.entries, key=lambda entry:
- (entry.revision,
- entry.device_id,
- entry.category,
- entry.test))
+ entries = sorted(
+ self.entries,
+ key=lambda entry: (
+ entry.revision,
+ entry.device_id,
+ entry.category,
+ entry.test,
+ ))
if not use_revision_columns:
# One entry per row.