+ def _sled_rental_description():
+ line_iter = io.StringIO(str(v))
+ line = next(line_iter, None)
+ match = None
+ while line is not None and (match := re.match(r"\* '''Rodelverleih''':(.*)", line)) is None:
+ line = next(line_iter, None)
+ if match is None:
+ return
+ result = [match.group(1)]
+ line = next(line_iter, None)
+ while line is not None and re.match(r"\* ", line) is None:
+ result.append(line)
+ line = next(line_iter, None)
+ sledrun_json['sled_rental_description'] = ''.join(result).strip()
+ _sled_rental_description()
+