Closed leeesangwon closed 3 years ago
login 함수가 __init__으로 바뀔 때 return 값이 제거되지 않은 것 같습니다.
login
__init__
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.
__init__()
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__