From: zhouhao Date: Mon, 3 Jun 2024 03:36:32 +0000 (+0800) Subject: Ignore the pylint warning of unbalanced-tuple-unpacking in utils script X-Git-Tag: accepted/tools/devbase/tools/20250527.103741~4^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2873fa74eb9b63ed6aadf5e34f82e02c0ccdbd84;p=tools%2Fgbs.git Ignore the pylint warning of unbalanced-tuple-unpacking in utils script Change-Id: I5105706e44582f2e38e1609426ec7948330cb2fb Signed-off-by: zhouhao --- diff --git a/gitbuildsys/utils.py b/gitbuildsys/utils.py index c24dbbc..481c098 100644 --- a/gitbuildsys/utils.py +++ b/gitbuildsys/utils.py @@ -245,7 +245,7 @@ class URLGrabber(object): except pycurl.error as err: log.debug('fetching error:%s' % str(err)) - errcode, errmsg = err.args + errcode, errmsg = err.args # pylint: disable=unbalanced-tuple-unpacking http_code = curl.getinfo(pycurl.HTTP_CODE) if errcode == pycurl.E_OPERATION_TIMEOUTED or http_code == 503: