Unmix hashes

This commit is contained in:
Douglas Eichelberger 2025-09-07 20:00:06 -07:00
parent c2cc855035
commit 4157b7fc5e
No known key found for this signature in database
GPG Key ID: F90193CBD547EB81

View File

@ -38,7 +38,7 @@ class AbstractTab
# @api internal # @api internal
attr_accessor :runtime_dependencies 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 = {}) def initialize(attributes = {})
@installed_as_dependency = T.let(nil, T.nilable(T::Boolean)) @installed_as_dependency = T.let(nil, T.nilable(T::Boolean))
@installed_on_request = 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_writer :used_options, :unused_options, :compiler, :source_modified_time
attr_reader :tapped_from 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 = {}) def initialize(attributes = {})
@poured_from_bottle = T.let(nil, T.nilable(T::Boolean)) @poured_from_bottle = T.let(nil, T.nilable(T::Boolean))
@built_as_bottle = T.let(nil, T.nilable(T::Boolean)) @built_as_bottle = T.let(nil, T.nilable(T::Boolean))