Skip to content

Commit

Permalink
Removed print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
PetterKraabol committed Aug 15, 2019
1 parent d2bc2af commit e268f57
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/PetterKraabol/Twitch-Python',
version='0.0.14',
version='0.0.15',
zip_safe=True,
)
3 changes: 0 additions & 3 deletions twitch/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@ def request(self, method, path: str = '', ignore_cache: bool = False, **kwargs)
url: str = self._url(path=path)
request = requests.Request(method, url, **kwargs).prepare()
cache_key: str = f'{method}:{request.url}'
print(cache_key)

print('Request', url, request.url)

# Cache lookup
if self.use_cache and not ignore_cache and API.SHARED_CACHE.get(cache_key):
Expand Down

0 comments on commit e268f57

Please sign in to comment.