Closed
Description
Describe the bug
Release notes for 2.6 describe a new set of routines in CamelCase but the implementation is snake_case.
See #105 for code and PR text which conflicts.
See #126 for removal of now-deprecated methods from 2.6.x version in 3.0 version.
To Reproduce
>>> from passageidentity import Passage
>>> APP_ID='....elided...'
>>> API_LOGIN='...elided...'
>>> psg = Passage(APP_ID, API_LOGIN)
>>> type(psg.user.get_by_identifier)
<class 'method'>
>>> type(psg.user.getByIdentifier)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'User' object has no attribute 'getByIdentifier'. Did you mean: 'get_by_identifier'?
Expected behavior
Expected different spelling according to description in #105.
Passage SDK Versions
- passage-identity 3.0.0
Third-Party SDK Versions
- python 3.11.9
Metadata
Metadata
Assignees
Labels
No labels