Remove ununsed function _pad_list
This commit is contained in:
parent
fb1263a8dd
commit
3be6a0504e
|
@ -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."""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue