Skip to content

Commit

Permalink
apparently one does not name a file types.py
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Oct 20, 2024
1 parent 6c64a30 commit 2c29cb3
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion oldnyc/geocode/coders/extended_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import sys

from oldnyc.geocode import grid
from oldnyc.geocode.types import Coder, Locatable
from oldnyc.geocode.geocode_types import Coder, Locatable
from oldnyc.item import Item, blank_item

ORDINALS = {
Expand Down
2 changes: 1 addition & 1 deletion oldnyc/geocode/coders/gpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import json
import sys

from oldnyc.geocode.types import Coder, Locatable
from oldnyc.geocode.geocode_types import Coder, Locatable
from oldnyc.item import Item


Expand Down
2 changes: 1 addition & 1 deletion oldnyc/geocode/coders/milstein.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys

from oldnyc.geocode.boroughs import point_to_borough
from oldnyc.geocode.types import Coder, Locatable
from oldnyc.geocode.geocode_types import Coder, Locatable
from oldnyc.item import Item

boros = r"(?:New York|Manhattan|Brooklyn|Bronx|Queens|Staten Island), (?:NY|N\.Y\.)"
Expand Down
2 changes: 1 addition & 1 deletion oldnyc/geocode/coders/nyc_parks.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
from collections import defaultdict

from oldnyc.geocode.types import Coder, Locatable
from oldnyc.geocode.geocode_types import Coder, Locatable
from oldnyc.item import blank_item

# TODO: move these into a data file, maybe GeoJSON
Expand Down
2 changes: 1 addition & 1 deletion oldnyc/geocode/generate_js.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from typing import Sequence

from oldnyc.geocode import record
from oldnyc.geocode.types import Locatable, Location
from oldnyc.geocode.geocode_types import Locatable, Location
from oldnyc.item import Item

encoder.FLOAT_REPR = lambda o: format(o, ".6f") # type: ignore
Expand Down
2 changes: 1 addition & 1 deletion oldnyc/geocode/geocode.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

from oldnyc.geocode import generate_js, geocoder
from oldnyc.geocode.coders import extended_grid, gpt, milstein, nyc_parks
from oldnyc.geocode.types import Coder, Locatable, Location
from oldnyc.geocode.geocode_types import Coder, Locatable, Location
from oldnyc.item import Item, load_items

CODERS: dict[str, Callable[[], Coder]] = {
Expand Down
File renamed without changes.

0 comments on commit 2c29cb3

Please sign in to comment.