Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 676aae5

Browse files
Fix
1 parent 0670fe7 commit 676aae5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openrobot/api_wrapper/_async.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ async def _request(self, method: str, url: str, **kwargs) -> typing.Union[dict,
7676
else:
7777
kwargs['headers'] = headers
7878

79-
return_on = kwargs.get('return_on', [])
79+
return_on = kwargs.pop('return_on', [])
8080

8181
if not url.startswith('/'):
8282
url = url[1:]

0 commit comments

Comments
 (0)