Skip to content
Snippets Groups Projects
Commit 670cfb4a authored by David Schaefer's avatar David Schaefer
Browse files

False as the default plot configuration value if the field is missing.

Fixes #17
parent 4eed41ca
No related branches found
No related tags found
1 merge request!12fix several new reader issues
Pipeline #2413 passed with stage
in 6 minutes and 27 seconds
......@@ -24,7 +24,7 @@ CONFIG_TYPES = {
F.START: pd.to_datetime,
F.END: pd.to_datetime,
F.TESTS: str,
F.PLOT: lambda v: str(v).lower() != "false",
F.PLOT: lambda v: str(v).lower() == "true",
F.LINENUMBER: int,
}
......
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