Skip to content

Commit bdafb80

Browse files
andrewpollockCharlyReux
authored andcommitted
Correct late breaking change (#2131)
I even confirmed that list.remove() is an in-place operation, then must of gotten distracted making the actual change :-( I feel great shame.
1 parent b332d5b commit bdafb80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

osv/ecosystems/bioconductor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def _enumerate_versions(self,
6060
# Currently breaking on 3.19,
6161
# see https://github.com/google/osv.dev/pull/1477/files#r1575458933
6262
try:
63-
bioc_versions = bioc_versions.remove('3.19')
63+
bioc_versions.remove('3.19')
6464
except ValueError:
6565
pass
6666
for version in bioc_versions:

0 commit comments

Comments
 (0)