diff --git a/oldnyc/geocode/osm/generate_intersections.py b/oldnyc/geocode/osm/generate_intersections.py index 68e4689..df4ecca 100644 --- a/oldnyc/geocode/osm/generate_intersections.py +++ b/oldnyc/geocode/osm/generate_intersections.py @@ -35,14 +35,6 @@ def invert(d: dict[T, set[V]]) -> dict[V, set[T]]: return out -def isint(s: str) -> bool: - try: - int(s) - return True - except ValueError: - return False - - def interpret_as_ave(w: OsmWay) -> str | None: name = w["tags"].get("name") alt_name = w["tags"].get("alt_name")