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 7a74d6a commit 7d8d194Copy full SHA for 7d8d194
datastream/tools/split_dataframes.py
@@ -32,10 +32,10 @@ def split_dataframes(
32
split = json.loads(filepath.read_text())
33
34
if set(proportions.keys()) != set(split.keys()):
35
- raise ValueError(
36
- 'Expected split names in split file to be the same as the'
37
- 'keys of proportions'
38
- )
+ raise ValueError(' '.join([
+ 'Expected split names in split file to be the same as the',
+ 'keys in proportions',
+ ]))
39
else:
40
split = {
41
split_name: list()
0 commit comments