Skip to content

Commit 7d8d194

Browse files
committed
doc: missing space in error message
1 parent 7a74d6a commit 7d8d194

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

datastream/tools/split_dataframes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ def split_dataframes(
3232
split = json.loads(filepath.read_text())
3333

3434
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-
)
35+
raise ValueError(' '.join([
36+
'Expected split names in split file to be the same as the',
37+
'keys in proportions',
38+
]))
3939
else:
4040
split = {
4141
split_name: list()

0 commit comments

Comments
 (0)