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
No related branches found
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 ...@@ -60,7 +60,7 @@ from .authentication.interface import CredentialsAuthenticator
if TYPE_CHECKING: if TYPE_CHECKING:
from typing import Optional, Any, Iterator, Union from typing import Optional, Any, Iterator, Union
from requests.models import Response from requests.models import Response
from ssl import _SSLMethod from ssl import _SSLMethod # pylint: disable=no-name-in-module
from .authentication.interface import AbstractAuthenticator from .authentication.interface import AbstractAuthenticator
......
...@@ -384,7 +384,7 @@ class MultipartYielder(object): ...@@ -384,7 +384,7 @@ class MultipartYielder(object):
# since python 3 # since python 3
def __next__(self): def __next__(self):
return self.next() return self.next() # pylint: disable=not-callable
def next(self): def next(self):
"""generator function to yield multipart/form-data representation of """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