Skip to content

Commit

Permalink
Fix sorbet type in dependabot/python/file_parser.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
amazimbe committed Jan 23, 2025
1 parent 6369958 commit 5aa57fd
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 5aa57fd

Please sign in to comment.