Skip to content
Snippets Groups Projects
Commit c4d8239c authored by Saket Agrahari's avatar Saket Agrahari
Browse files

Merge branch 'feature/COMP-288' into 'develop'

[COMP-288] : further name correction

See merge request !100
parents 180216d0 aeb0de76
Branches
Tags
1 merge request!100[COMP-288] : further name correction
...@@ -46,7 +46,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]: ...@@ -46,7 +46,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
# Fetch and extract data from the ConnectedProportion table and add it to the result set # Fetch and extract data from the ConnectedProportion table and add it to the result set
entries = fetch_data_from_table(ConnectedProportion, extract_model_data) entries = fetch_data_from_table(ConnectedProportion, extract_model_data)
result_set.append({'name': 'Market share', 'data': entries}) result_set.append({'name': 'Market Share', 'data': entries})
# Fetch and extract data from the ConnectivityLevel table and add it to the result set # Fetch and extract data from the ConnectivityLevel table and add it to the result set
entries = fetch_data_from_table(ConnectivityLevel, extract_model_data) entries = fetch_data_from_table(ConnectivityLevel, extract_model_data)
...@@ -62,7 +62,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]: ...@@ -62,7 +62,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
# Fetch and extract data from the ConnectivityGrowth table # Fetch and extract data from the ConnectivityGrowth table
entries = fetch_data_from_table(ConnectivityGrowth, extract_model_data) entries = fetch_data_from_table(ConnectivityGrowth, extract_model_data)
result_set.append({'name': 'Est traffic growth 3 years', 'data': entries}) result_set.append({'name': 'Est Traffic Growth 3 years', 'data': entries})
# Fetch and extract data from the CommercialConnectivity table and add it to the result set # Fetch and extract data from the CommercialConnectivity table and add it to the result set
entries = fetch_data_from_table(CommercialConnectivity, extract_model_data) entries = fetch_data_from_table(CommercialConnectivity, extract_model_data)
...@@ -118,7 +118,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]: ...@@ -118,7 +118,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
# Fetch and extract data from the FibreLight table and add it to the result set # Fetch and extract data from the FibreLight table and add it to the result set
entries = fetch_data_from_table(FibreLight, extract_model_data) entries = fetch_data_from_table(FibreLight, extract_model_data)
result_set.append({'name': 'Fibre operation model', 'data': entries}) result_set.append({'name': 'Fibre Operation Model', 'data': entries})
# Fetch and extract data from the NetworkMapUrls table and add it to the result set # Fetch and extract data from the NetworkMapUrls table and add it to the result set
entries = fetch_data_from_table(NetworkMapUrls, extract_model_data) entries = fetch_data_from_table(NetworkMapUrls, extract_model_data)
...@@ -146,7 +146,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]: ...@@ -146,7 +146,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
# Fetch and extract data from the WeatherMap table and add it to the result set # Fetch and extract data from the WeatherMap table and add it to the result set
entries = fetch_data_from_table(WeatherMap, extract_model_data) entries = fetch_data_from_table(WeatherMap, extract_model_data)
result_set.append({'name': 'Weather Map', 'data': entries}) result_set.append({'name': 'Weather Map Url', 'data': entries})
# Fetch and extract data from the AlienWave table and add it to the result set # Fetch and extract data from the AlienWave table and add it to the result set
entries = fetch_data_from_table(AlienWave, extract_model_data) entries = fetch_data_from_table(AlienWave, extract_model_data)
...@@ -154,7 +154,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]: ...@@ -154,7 +154,7 @@ def fetch_and_combine_data() -> Sequence[Optional[Dict[str, Any]]]:
# Fetch and extract data from the Capacity table and add it to the result set # Fetch and extract data from the Capacity table and add it to the result set
entries = fetch_data_from_table(Capacity, extract_model_data) entries = fetch_data_from_table(Capacity, extract_model_data)
result_set.append({'name': 'Capacity', 'data': entries}) result_set.append({'name': 'Backbone Capacity', 'data': entries})
# Fetch and extract data from the NonREPeers table and add it to the result set # Fetch and extract data from the NonREPeers table and add it to the result set
entries = fetch_data_from_table(NonREPeers, extract_model_data) entries = fetch_data_from_table(NonREPeers, extract_model_data)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment