Skip to content

Commit d6340a8

Browse files
adminJaneBellaiche
authored andcommitted
Edited file 'python-lib/dku_utils.py'
1 parent b7f2d48 commit d6340a8

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

python-lib/dku_utils.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@
1111
def get_dku_key_values(endpoint_query_string):
1212
return {key_value.get("from"): key_value.get("to") for key_value in endpoint_query_string if key_value.get("from")}
1313

14-
def get_dku_key_multivalues(endpoint_query_string):
15-
result = defaultdict(list)
16-
for kv in endpoint_query_string:
17-
if kv.get('from') and kv.get('to'):
18-
result[kv['from'].strip()].append(kv['to'].strip())
19-
return dict(result)
2014

2115
def get_endpoint_parameters(configuration):
2216
endpoint_parameters = [

0 commit comments

Comments
 (0)