Skip to content

Commit 93350e0

Browse files
committed
Fix ApifyABC._post()
1 parent 084a476 commit 93350e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apifyunofficial/ApifyABC.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ def _post(self, url=None, data=None, **kwargs):
4949
if data is None:
5050
r = self.get_session().post(url, params=kwargs)
5151
else:
52-
r = self.get_session().psot(url, params=kwargs, json=data)
52+
r = self.get_session().post(url, params=kwargs, json=data)
5353
r.raise_for_status()
5454
return r.json()

0 commit comments

Comments
 (0)