Skip to content

Commit 9b8ab8b

Browse files
committed
rm temporary variable
1 parent 7567ba4 commit 9b8ab8b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

client.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ def request(self, url, token, api, fields=[], version=2, **kwargs):
1515
if kwargs:
1616
params.update(kwargs)
1717
response = requests.get(self.compose_url(api, version), params=params)
18-
obj = response.json()
19-
return obj
18+
return response.json()
2019

2120
def compose_url(self, api, version_number):
2221
"""

0 commit comments

Comments
 (0)