Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesVarndell committed Sep 18, 2023
1 parent 3118078 commit 6a88cea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cads_adaptors/adaptors/roocs/operators.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def level(self):
levels = [levels]

levels = [
list(re.finditer(r"[\d]*[.][\d]+|[\d]+", level))[0] for level in levels
list(re.finditer(r"[\d]*[.][\d]+|[\d]+", level))[0].string
for level in levels
]

for i, level in enumerate(levels):
Expand Down

0 comments on commit 6a88cea

Please sign in to comment.