Skip to content

Commit

Permalink
Fix #365 (#367)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBoothroyd authored Aug 25, 2021
1 parent bc57e1d commit 976cf1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openff/evaluator/datasets/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ def from_pandas(cls, data_frame: pandas.DataFrame) -> "PhysicalPropertyDataSet":
from openff.evaluator import properties

property_header_matches = {
re.match(r"^([a-zA-Z]+) Value \(([a-zA-Z0-9+-/\s]*)\)$", header)
re.match(r"^([a-zA-Z]+) Value \(([a-zA-Z0-9+-/\s*^]*)\)$", header)
for header in data_frame
if header.find(" Value ") >= 0
}
Expand Down

0 comments on commit 976cf1e

Please sign in to comment.