Skip to content

Commit e268f57

Browse files
committed
Removed print statements.
1 parent d2bc2af commit e268f57

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
test_suite='tests',
4040
tests_require=test_requirements,
4141
url='https://github.com/PetterKraabol/Twitch-Python',
42-
version='0.0.14',
42+
version='0.0.15',
4343
zip_safe=True,
4444
)

twitch/api.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,6 @@ def request(self, method, path: str = '', ignore_cache: bool = False, **kwargs)
7676
url: str = self._url(path=path)
7777
request = requests.Request(method, url, **kwargs).prepare()
7878
cache_key: str = f'{method}:{request.url}'
79-
print(cache_key)
80-
81-
print('Request', url, request.url)
8279

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

0 commit comments

Comments
 (0)