From bf44e74a0191065e149760d468854ad229e914cf Mon Sep 17 00:00:00 2001 From: Issy Long Date: Thu, 25 Jan 2024 23:11:17 +0000 Subject: [PATCH] Fix Sorbet - don't need the `T.must`s anymore --- Library/Homebrew/dev-cmd/bump.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/bump.rb b/Library/Homebrew/dev-cmd/bump.rb index cd3f17a4d1..4e84d3910a 100644 --- a/Library/Homebrew/dev-cmd/bump.rb +++ b/Library/Homebrew/dev-cmd/bump.rb @@ -463,9 +463,9 @@ module Homebrew if formula_or_cask.is_a?(Formula) require "formula_auditor" auditor = FormulaAuditor.new(formula_or_cask) - puts <<~EOS if T.must(auditor).synced_with_other_formulae? + puts <<~EOS if auditor.synced_with_other_formulae? Version syncing: #{title_name} version should be kept in sync with - #{synced_with(T.must(auditor), formula_or_cask, new_version.general).join(", ")}. + #{synced_with(auditor, formula_or_cask, new_version.general).join(", ")}. EOS end puts <<~EOS unless args.no_pull_requests?