Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix a bug
  • Loading branch information
antheia-z committed Aug 16, 2021
commit b9c700d86528fd11e81bea28d331b3c14a28b0f3
3 changes: 2 additions & 1 deletion app/location/csbs.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""app.locations.csbs.py"""
from . import Location
from . import decoratedSerialize


class CSBSLocation(Location):
Expand Down Expand Up @@ -29,7 +30,7 @@ def __init__(self, id, state, county, coordinates, last_updated, confirmed, deat
def serialize(self): # pylint: disable=arguments-differ,unused-argument
"""
Serializes the location into a dict.


:returns: The serialized location.
:rtype: dict
Expand Down
1 change: 1 addition & 0 deletions app/location/nyt.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"""app.locations.nyt.py"""
from . import TimelinedLocation
from . import decoratedSerialize


class NYTLocation(TimelinedLocation):
Expand Down