From 3be6a0504e3f00694584e724d015120661921b85 Mon Sep 17 00:00:00 2001 From: Hugo Date: Mon, 25 Sep 2017 12:24:44 +0300 Subject: [PATCH] Remove ununsed function _pad_list --- pylast/__init__.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/pylast/__init__.py b/pylast/__init__.py index 36aa77e..d76716e 100644 --- a/pylast/__init__.py +++ b/pylast/__init__.py @@ -1200,17 +1200,6 @@ def _string_output(func): 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): """An abstract webservices object."""