We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d056426 commit 27b60e3Copy full SHA for 27b60e3
app/data/__init__.py
@@ -4,6 +4,10 @@
4
from ..services.location.nyt import NYTLocationService
5
6
class DataSources:
7
+ """
8
+ Class to represent the root of the aggregate containing the location services.
9
10
+
11
# Mapping of services to data-sources.
12
__DATA_SOURCES_MAP = {
13
"jhu": JhuLocationService(),
@@ -30,4 +34,4 @@ def get_data_sources(self):
30
34
:returns: The dictionary of data sources.
31
35
:rtype: dict
32
36
"""
33
- return self.__DATA_SOURCES_MAP
37
+ return self.__DATA_SOURCES_MAP
0 commit comments