From 4157b7fc5ebe7223981882d9f33d955c401a3e80 Mon Sep 17 00:00:00 2001 From: Douglas Eichelberger Date: Sun, 7 Sep 2025 20:00:06 -0700 Subject: [PATCH] Unmix hashes --- Library/Homebrew/tab.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb index 799d4c2c94..5e8149e755 100644 --- a/Library/Homebrew/tab.rb +++ b/Library/Homebrew/tab.rb @@ -38,7 +38,7 @@ class AbstractTab # @api internal attr_accessor :runtime_dependencies - sig { params(attributes: T::Hash[T.any(String, Symbol), T.untyped]).void } + sig { params(attributes: T.any(T::Hash[String, T.untyped], T::Hash[Symbol, T.untyped])).void } def initialize(attributes = {}) @installed_as_dependency = T.let(nil, T.nilable(T::Boolean)) @installed_on_request = T.let(nil, T.nilable(T::Boolean)) @@ -170,7 +170,7 @@ class Tab < AbstractTab attr_writer :used_options, :unused_options, :compiler, :source_modified_time attr_reader :tapped_from - sig { params(attributes: T::Hash[T.any(String, Symbol), T.untyped]).void } + sig { params(attributes: T.any(T::Hash[String, T.untyped], T::Hash[Symbol, T.untyped])).void } def initialize(attributes = {}) @poured_from_bottle = T.let(nil, T.nilable(T::Boolean)) @built_as_bottle = T.let(nil, T.nilable(T::Boolean))