This is an automated email from the ASF dual-hosted git repository.

tomaz pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/libcloud.git

commit aef56dbc6302a6dc4cf6a2d7f6d180b49ac81afc
Author: Tomaz Muraus <to...@tomaz.me>
AuthorDate: Thu Dec 8 20:19:52 2022 +0100

    Ignore false positive lint warning.
---
 libcloud/common/google.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libcloud/common/google.py b/libcloud/common/google.py
index b7991deb1..7d07058f3 100644
--- a/libcloud/common/google.py
+++ b/libcloud/common/google.py
@@ -501,7 +501,7 @@ class 
GoogleInstalledAppAuthConnection(GoogleBaseAuthConnection):
         class AccessCodeReceiver(BaseHTTPRequestHandler):
 
             # noinspection PyMethodParameters,PyPep8Naming
-            def do_GET(self_):
+            def do_GET(self_):  # pylint: disable=noo-self-argument
                 query = urlparse.urlparse(self_.path).query
                 query_components = dict(qc.split("=") for qc in 
query.split("&"))
                 if "state" in query_components and query_components["state"] 
!= urllib.parse.quote(

Reply via email to