We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a99b9eb commit 1d70a4dCopy full SHA for 1d70a4d
tests/__init__.py
@@ -22,6 +22,7 @@
22
# For transition only...
23
OLD_SCHEMAS_DIR = os.path.join(HOME, "v1-dev")
24
25
+
26
def schema_properties(schema_name):
27
"""
28
Returns the properties for a schema
@@ -112,9 +113,10 @@ def fire_stats():
112
113
"data_combinations": format(decimal.Decimal(N), ".6e"),
114
}
115
116
117
def load_jsons(filenames, location):
- jsons = []
- for filename in sorted(filenames):
118
- with open(os.path.join(location, filename)) as jsonfile:
119
- jsons.append(json.load(jsonfile))
120
- return jsons
+ jsons = []
+ for filename in sorted(filenames):
+ with open(os.path.join(location, filename)) as jsonfile:
121
+ jsons.append(json.load(jsonfile))
122
+ return jsons
0 commit comments