Skip to content

Commit

Permalink
Fix some code review issues brought up by codacy.
Browse files Browse the repository at this point in the history
masojus committed Apr 18, 2017
1 parent cd8850e commit 476c00f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keen/saved_queries.py
Original file line number Diff line number Diff line change
@@ -7,8 +7,8 @@
except ImportError:
from collections import Mapping

from keen.api import KeenApi, HTTPMethods
from keen import exceptions, utilities
from keen.api import HTTPMethods
from keen import utilities
from keen.utilities import KeenKeys, requires_key


@@ -146,7 +146,7 @@ def delete(self, query_name):
"""

url = "{0}/{1}".format(self.saved_query_url, query_name)
response = self._get_json(HTTPMethods.DELETE, url, self._get_master_key())
self._get_json(HTTPMethods.DELETE, url, self._get_master_key())

return True

0 comments on commit 476c00f

Please sign in to comment.