AnandInguva commented on code in PR #23931:
URL: https://github.com/apache/beam/pull/23931#discussion_r1055635691
##########
sdks/python/apache_beam/testing/analyzers/github_issues_utils.py:
##########
@@ -85,7 +85,7 @@ def create_issue(
'labels': [_AWAITING_TRIAGE_LABEL, _PERF_ALERT_LABEL]
}
if labels:
- data['labels'].extend(labels)
+ data['labels'].extend(labels) # type: ignore
Review Comment:
IIRC, the error is `Sequence[str] don't have attribute extend` for
pylint/mypy on 3.7. it is fixed in later version of pylint
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]