Skip to content

Commit cb03425

Browse files
committed
Fixup lint.
1 parent 923b6ee commit cb03425

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/cleanup-binary-tags.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,10 @@ def tag_to_version(tag):
1010
version = re.sub(r'-[x86|i686].*', '', version)
1111
return version
1212

13+
1314
subprocess.check_call('git pull --tags', shell=True)
14-
tags = subprocess.check_output('git tag --list | grep binary', shell=True).decode('UTF-8').splitlines()
15+
tags = subprocess.check_output(
16+
'git tag --list | grep binary', shell=True).decode('UTF-8').splitlines()
1517
versions = sorted(list(set([tag_to_version(tag) for tag in tags])), key=semver.parse_version_info)
1618
versions_to_delete = versions[:-3]
1719

0 commit comments

Comments
 (0)