Skip to content

Commit

Permalink
Fix sorbet type in dependabot/python/file_parser.rb (#11389)
Browse files Browse the repository at this point in the history
  • Loading branch information
amazimbe authored Jan 23, 2025
1 parent 4a71fac commit 0a0e9c0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/lib/dependabot/python/file_parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,9 @@ def blocking_marker?(dep)
else
return true if dep["markers"].include?("<")
return false if dep["markers"].include?(">")
return false if dep["requirement"].nil?

dep["requirement"]&.include?("<")
dep["requirement"].include?("<")
end
end

Expand Down

0 comments on commit 0a0e9c0

Please sign in to comment.