You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
해당 부분의 params=params가 아닌 payload=params로 변경되어야 하는 것이 아닐까 생각해 이슈 작성합니다!
이와 같이 생각한 이유는 def _get(self, url, payload=None):와 같이 선언되어 있는데, 78번 라인에서는 return self._get(url, params=params)로 값을 _get 함수로 전달하고 있어 에러가 나지 않을까 싶어서 입니다! (아직 테스트해보지는 못했습니다 ㅠ)
감사합니다!
The text was updated successfully, but these errors were encountered:
해당 부분의
params=params
가 아닌payload=params
로 변경되어야 하는 것이 아닐까 생각해 이슈 작성합니다!이와 같이 생각한 이유는
def _get(self, url, payload=None):
와 같이 선언되어 있는데, 78번 라인에서는return self._get(url, params=params)
로 값을 _get 함수로 전달하고 있어 에러가 나지 않을까 싶어서 입니다! (아직 테스트해보지는 못했습니다 ㅠ)감사합니다!
The text was updated successfully, but these errors were encountered: