Skip to content

Commit

Permalink
remove unused import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
pra-moh committed Apr 8, 2020
1 parent cec2abe commit 02ab294
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tests/telemetry/test_telemetry.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import pytest
import logging

# Helper functions
def get_dict_stdout(gnmi_out, certs_out):
result = ""
gnmi_list = []
gnmi_list = get_list_stdout(gnmi_out) + get_list_stdout(certs_out)
params_dict= dict(itertools.izip_longest(*[iter(gnmi_list)] *2, fillvalue=""))
params_dict= dict(itertools.izip_longest(*[iter(gnmi_list)] *2, fillvalue = ""))
return params_dict

def get_list_stdout(cmd_out):
Expand Down

0 comments on commit 02ab294

Please sign in to comment.