-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: update sms vendor api client package #248
Conversation
eox_nelp/signals/tasks.py
Outdated
@@ -61,7 +61,7 @@ def _post_futurex_progress(data): | |||
data (dict): dict to send to futurex enrollment-progress path. | |||
""" | |||
api_client = FuturexApiClient() | |||
response = api_client.enrollment_progress(data) | |||
response = api_client.enrollment_progress(data) # pylint: disable=no-member |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are you changing this line ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That line was changed because at some cases the GitHub checks as well as the local quality tests kept failing showing the Pylint no-member error.
Seems now that its not necessary.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have tested the quality tests and if I remove this changes the result is the same, please revert this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it!
aa6d6a1
to
615c962
Compare
I updated the commit message as it now reflects the changes intention. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Description
I removed the unused
sms_vendor
module from the deprecatedapi_clients
package. imports were updated.Testing
I sent an SMS to check if the service was available. Although I didn't receive the expected response, the 401 status code is enough proof that it's working.