Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
andyw8 committed Jan 28, 2025
1 parent 628a9bf commit e9323ad
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/ruby_lsp/tapioca/addon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,9 @@ def file_updated?(change, path)

sig { void }
def run_gem_rbi_check
gem_rbi_check = RunGemRbiCheck.new(T.must(@global_state).workspace_path) # TODO: Fix T.must
return unless @global_state

gem_rbi_check = RunGemRbiCheck.new(@global_state.workspace_path)
gem_rbi_check.run

T.must(@outgoing_queue) << Notification.window_log_message(
Expand Down

0 comments on commit e9323ad

Please sign in to comment.