lewisleedev / thecampy

더캠프 인터넷편지 파이썬 라이브러리
https://pypi.org/project/thecampy/
MIT License
22 stars 4 forks source link

Client의 `__init__` 함수가 리턴값을 갖습니다 #10

Closed leeesangwon closed 3 years ago

leeesangwon commented 3 years ago

login 함수가 __init__으로 바뀔 때 return 값이 제거되지 않은 것 같습니다.

https://github.com/lewisleedev/thecampy/blob/dc1ceb7aa17fcd9e41fbad0788b2e62d224b7bd4/thecampy/client.py#L47-L50

__init__ 함수의 return이 None이 아닐경우 runtime TypeError가 발생합니다.

https://docs.python.org/3/reference/datamodel.html#object.__init__

no non-None value may be returned by __init__(); doing so will cause a TypeError to be raised at runtime.