diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index b4d4df08..365eed85 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -13,11 +13,6 @@ Gemspec/RequiredRubyVersion: Exclude: - 'pry.gemspec' -# Offense count: 1 -Lint/RescueException: - Exclude: - - 'lib/pry/color_printer.rb' - # Offense count: 1 Lint/ReturnInVoidContext: Exclude: diff --git a/lib/pry/color_printer.rb b/lib/pry/color_printer.rb index d59d9b48..cfd93856 100644 --- a/lib/pry/color_printer.rb +++ b/lib/pry/color_printer.rb @@ -43,7 +43,7 @@ class Pry begin str = obj.inspect - rescue Exception + rescue StandardError # Read the class name off of the singleton class to provide a default # inspect. singleton = class << obj; self; end