From 48bfb0062863f9541e18ccf643b14373b38be77d Mon Sep 17 00:00:00 2001 From: Nitzan Pomerantz <9297302+nitzpo@users.noreply.github.com> Date: Sat, 25 Oct 2025 14:01:53 +0300 Subject: [PATCH] CR fix --- nadlan_mcp/govmap/utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nadlan_mcp/govmap/utils.py b/nadlan_mcp/govmap/utils.py index 05e590d..c49c4d1 100644 --- a/nadlan_mcp/govmap/utils.py +++ b/nadlan_mcp/govmap/utils.py @@ -5,6 +5,7 @@ This module provides shared helper functions with no external dependencies (except standard library). """ +import re from typing import Tuple @@ -129,8 +130,6 @@ def extract_floor_number(floor_str: str) -> int | None: return num # Try to extract number from string - import re - numbers = re.findall(r"\d+", floor_str) if numbers: try: