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:
Diffstat (limited to 'tests/performance/api/graph.py')
-rw-r--r--tests/performance/api/graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/performance/api/graph.py b/tests/performance/api/graph.py
index e2d2e7d2058..eb411915ad9 100644
--- a/tests/performance/api/graph.py
+++ b/tests/performance/api/graph.py
@@ -6,6 +6,7 @@ import json
import pathlib
from typing import Dict, List
+
class TestGraph:
def __init__(self, json_filepaths: List[pathlib.Path]):
# Initialize graph from JSON file. Note that this is implemented without
@@ -102,4 +103,3 @@ class TestGraph:
contents = template.replace('%JSON_DATA%', self.json)
with open(filepath, "w") as f:
f.write(contents)
-