-
Notifications
You must be signed in to change notification settings - Fork 2
Remove the preferences endpoints #48
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
Conversation
@@ -3,4 +3,4 @@ | |||
# W504 is the "line break before binary operator" error and is disabled since we use | |||
# the black code formatter. | |||
# W503 is disabled by default, but must be disabled explicitly when using `ignore`. | |||
ignore = E501, W503, W504 | |||
ignore = E501, W503, W504, F401 |
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.
Disables an error about module imported but not used that is hard to fix without changing the templates.
The python SDK is due for an overhaul soon, so not worth digging in.
_request_timeout, (int,) if six.PY3 else (int, long) | ||
): # noqa: E501,F821 | ||
_request_timeout, (int,) if six.PY3 else (int, int) | ||
): # noqa: E501 |
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.
This fixes the flake8
warning (and has been updated in the template). long
has been deprecated in python 3
What
Why
SDK Release Checklist