Skip to content

Commit d95904b

Browse files
committed
fix: remove unsupported pattern handling in well_inventory_csv.py
1 parent ee8d8db commit d95904b

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

services/well_inventory_csv.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,6 @@ def _extract_autogen_prefix(well_id: str | None) -> str | None:
8484
prefix = m.group("prefix").upper()
8585
return f"{prefix}-"
8686

87-
# Unsupported pattern: not an auto-generation placeholder
88-
return None
89-
return value
90-
9187
token_match = AUTOGEN_TOKEN_REGEX.match(value)
9288
if token_match:
9389
return f"{token_match.group('prefix')}-"

0 commit comments

Comments
 (0)