Skip to content
Snippets Groups Projects
Commit dfc66218 authored by I. Nüske's avatar I. Nüske
Browse files

FIX: Ignore false positive linting warnings

parent dc339849
Branches
No related tags found
2 merge requests!189ENH: add convenience functions,!181Fix pylint warnings
Pipeline #62388 passed
......@@ -60,7 +60,7 @@ from .authentication.interface import CredentialsAuthenticator
if TYPE_CHECKING:
from typing import Optional, Any, Iterator, Union
from requests.models import Response
from ssl import _SSLMethod
from ssl import _SSLMethod # pylint: disable=no-name-in-module
from .authentication.interface import AbstractAuthenticator
......
......@@ -384,7 +384,7 @@ class MultipartYielder(object):
# since python 3
def __next__(self):
return self.next()
return self.next() # pylint: disable=not-callable
def next(self):
"""generator function to yield multipart/form-data representation of
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment