From 0b71c913a991aa9625d99771db958fdf9741cd8e Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 29 Oct 2012 17:25:53 -0400 Subject: [PATCH] Added TODO and removed line of code that assigned to unused variables --- python_apps/api_clients/api_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_apps/api_clients/api_client.py b/python_apps/api_clients/api_client.py index f1df1598a..4370fda9a 100644 --- a/python_apps/api_clients/api_client.py +++ b/python_apps/api_clients/api_client.py @@ -202,6 +202,7 @@ class AirtimeApiClient(object): return version + # TODO : this isn't being used anywhere. consider removing this method def test(self): logger = self.logger items = self.get_schedule()[1] @@ -290,7 +291,6 @@ class AirtimeApiClient(object): logger = self.logger response = '' try: - schedule_id = data url = self.construct_url("update_start_playing_url") url = url.replace("%%media_id%%", str(media_id)) logger.debug(url)