Skip to content

Commit 27b60e3

Browse files
author
Jeeven Dhanoa
committed
pass lint
1 parent d056426 commit 27b60e3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

app/data/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
from ..services.location.nyt import NYTLocationService
55

66
class DataSources:
7+
"""
8+
Class to represent the root of the aggregate containing the location services.
9+
"""
10+
711
# Mapping of services to data-sources.
812
__DATA_SOURCES_MAP = {
913
"jhu": JhuLocationService(),
@@ -30,4 +34,4 @@ def get_data_sources(self):
3034
:returns: The dictionary of data sources.
3135
:rtype: dict
3236
"""
33-
return self.__DATA_SOURCES_MAP
37+
return self.__DATA_SOURCES_MAP

0 commit comments

Comments
 (0)