Git: remove unused open3 require

I refactored the `Git` strategy to use `SystemCommand` instead of
`Open3#capture3` in #13387 but I forgot to remove `require "open3"`
at the time. `Git` doesn't use `open3` now, so this removes the
unused `require`.
This commit is contained in:
Sam Ford 2024-07-25 12:43:16 -04:00
parent fcaeacd0da
commit 0de85120cb
No known key found for this signature in database
GPG Key ID: 7AF5CBEE1DD6F76D

View File

@ -1,7 +1,6 @@
# typed: strict
# frozen_string_literal: true
require "open3"
require "system_command"
module Homebrew