Skip to content

Commit b9c700d

Browse files
committed
fix a bug
1 parent 3278a3b commit b9c700d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

app/location/csbs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""app.locations.csbs.py"""
22
from . import Location
3+
from . import decoratedSerialize
34

45

56
class CSBSLocation(Location):
@@ -29,7 +30,7 @@ def __init__(self, id, state, county, coordinates, last_updated, confirmed, deat
2930
def serialize(self): # pylint: disable=arguments-differ,unused-argument
3031
"""
3132
Serializes the location into a dict.
32-
33+
3334
3435
:returns: The serialized location.
3536
:rtype: dict

app/location/nyt.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
"""app.locations.nyt.py"""
22
from . import TimelinedLocation
3+
from . import decoratedSerialize
34

45

56
class NYTLocation(TimelinedLocation):

0 commit comments

Comments
 (0)