Skip to content
Snippets Groups Projects
Commit 4cecfd02 authored by Stefano Borini's avatar Stefano Borini
Browse files

Fixed splitting

parent 7bf0e798
No related branches found
No related tags found
1 merge request!162Provide ability to run a single data source and check its results [WIP]
...@@ -66,7 +66,7 @@ class CoreRunDataSourceDriver(BaseCoreDriver): ...@@ -66,7 +66,7 @@ class CoreRunDataSourceDriver(BaseCoreDriver):
"Specified input is empty. Please provide values.") "Specified input is empty. Please provide values.")
try: try:
values = [float(x) for x in line.strip().split(' ')] values = [float(x) for x in line.split()]
except ValueError: except ValueError:
raise RuntimeError( raise RuntimeError(
"Unable to convert values to floating point number. " "Unable to convert values to floating point number. "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment