Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
hf-kklein committed May 20, 2024
1 parent 8b8800e commit 6241453
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/kohlrahbi/unfoldedahb/unfoldedahbtable.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ def _split_data_element_and_segment_id(value: str | None) -> tuple[str | None, s
"""
returns the data element id and segment id
"""
if value is None:
return None, None
datenelement_id: str | None
segment_id: str | None
if _segment_id_pattern.match(value):
Expand Down

0 comments on commit 6241453

Please sign in to comment.