Remove print() call

This commit is contained in:
Roman Mogylatov 2020-07-27 21:49:48 -04:00
parent 6d4fd9fb03
commit 84dd789dad

View File

@ -14,6 +14,5 @@ class SearchService:
return []
result = await self._giphy_client.search(query, limit)
print(result.keys())
return [{'url': gif['url']} for gif in result['data']]