raulcd commented on code in PR #14533:
URL: https://github.com/apache/arrow/pull/14533#discussion_r1068614500
##########
dev/merge_arrow_pr.py:
##########
@@ -302,12 +298,9 @@ def version_tuple(x):
mainline_versions = [v for v in mainline_versions
if f"maint-{v}" not in maintenance_branches]
- default_fix_versions = [
- fix_version_from_branch(x, mainline_versions)
- for x in merge_branches]
-
- return default_fix_versions[0]
+ default_fix_versions = fix_version_from_branch(mainline_versions)
+ return default_fix_versions
Review Comment:
The removed empty line is missing. Flake8 expects 2 empty lines between
function definitions
```suggestion
return default_fix_versions
```
--
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]