dev-cmd/livecheck: Bump to Sorbet typed: strict

This commit is contained in:
Issy Long 2024-06-30 19:23:26 +01:00
parent 57ba22053f
commit 69cf1df56f
No known key found for this signature in database

View File

@ -1,4 +1,4 @@
# typed: true # typed: strict
# frozen_string_literal: true # frozen_string_literal: true
require "abstract_command" require "abstract_command"
@ -113,8 +113,9 @@ module Homebrew
private private
sig { returns(String) }
def watchlist_path def watchlist_path
@watchlist_path ||= File.expand_path(Homebrew::EnvConfig.livecheck_watchlist) @watchlist_path ||= T.let(File.expand_path(Homebrew::EnvConfig.livecheck_watchlist), T.nilable(String))
end end
end end
end end