Skip to content

Commit

Permalink
rm dead code
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Nov 17, 2024
1 parent 933ed10 commit 1ed69e6
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions oldnyc/geocode/osm/generate_intersections.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 1ed69e6

Please sign in to comment.