Remove ununsed function _pad_list

This commit is contained in:
Hugo 2017-09-25 12:24:44 +03:00
parent fb1263a8dd
commit 3be6a0504e

View file

@ -1200,17 +1200,6 @@ def _string_output(func):
return r return r
def _pad_list(given_list, desired_length, padding=None):
"""
Pads a list to be of the desired_length.
"""
while len(given_list) < desired_length:
given_list.append(padding)
return given_list
class _BaseObject(object): class _BaseObject(object):
"""An abstract webservices object.""" """An abstract webservices object."""