Skip to content
Snippets Groups Projects
Commit 743a5468 authored by Malte Nyhuis's avatar Malte Nyhuis
Browse files

restructuring and progressing new case-creation approach

parent 33646586
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ def find_variables_infile(file, sign):
lookup_var = re.search(varsignature, line)
if not lookup_var:
lookaround = False
assert sign not in line, f"parameter is not defined correct \n file: {filepath}\n line: {line}"
assert sign not in line, f"parameter is not defined correct \n file: {file}\n line: {line}"
else:
span = lookup_var.span()
parameter = line[span[0] + siglim[0]:span[1] + siglim[1]]
......
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