1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Merge pull request #1967 from pry/rubocop-lint-rescue-exception

rubocop: fix offences of the Lint/ReturnInVoidContext cop
This commit is contained in:
Kyrylo Silin 2019-03-04 01:02:35 +02:00 committed by GitHub
commit 94e44cf412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 6 deletions

View file

@ -13,11 +13,6 @@ Gemspec/RequiredRubyVersion:
Exclude:
- 'pry.gemspec'
# Offense count: 1
Lint/ReturnInVoidContext:
Exclude:
- 'lib/pry/command_set.rb'
# Offense count: 1
Lint/ShadowedException:
Exclude:

View file

@ -325,7 +325,11 @@ class Pry
# Pry.config.commands["help"] = MyHelpCommand
#
def []=(pattern, command)
return @commands.delete(pattern) if command.equal?(nil)
if command.equal?(nil)
@commands.delete(pattern)
return
end
unless Class === command && command < Pry::Command
raise TypeError, "command is not a subclass of Pry::Command"
end