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
Next Next commit
Second Aggregation
  • Loading branch information
Vimarsh Patel committed Jul 25, 2021
commit 184e88290448e84fe5213f033c02586c668bad56
1 change: 1 addition & 0 deletions app/location/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Location: # pylint: disable=too-many-instance-attributes
"""

def __init__(

self, id, country, province, coordinates, last_updated, confirmed, deaths, recovered,
): # pylint: disable=too-many-arguments
# General info.
Expand Down
2 changes: 1 addition & 1 deletion app/utils/populations.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class POPULATION:
# Fetching of the populations.
POPULATION = fetch_population()

def __init__(self):
self.population = POPULATION

Expand Down