Skip to content

Commit

Permalink
fix linters
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasesquivelgc committed Oct 19, 2023
1 parent 301e838 commit 36d5c0f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ Metrics/BlockLength:
Max: 30
Metrics/ModuleLength:
Max: 300
Metrics/ParameterLists:
Max: 8



Expand Down
2 changes: 1 addition & 1 deletion modules/decorator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
require_relative 'save_genre'

module Decorator
include SaveGenre
include SaveGenre
def self.decorate(item, authors, genres, labels)
puts 'first name of the author is:'
author_first_name = gets.chomp
Expand Down
2 changes: 1 addition & 1 deletion modules/save_album.rb
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,4 @@ def self.label_to_h(label)
color: label.color
}
end
end
end
2 changes: 1 addition & 1 deletion modules/save_genre.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ def self.load_genres
end
genres
end
end
end

0 comments on commit 36d5c0f

Please sign in to comment.