Skip to content

Commit

Permalink
Fix Linters
Browse files Browse the repository at this point in the history
  • Loading branch information
Have-Samuel committed Jun 29, 2022
1 parent 362a0f7 commit 9b0f02c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion author.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Author
attr_accessor :first_name, :last_name, :items

def initialize(first_name, last_name)
@id = id
@first_name = first_name
Expand Down
2 changes: 1 addition & 1 deletion game.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class Game < Item
attr_accessor :multiplayer, :last_played_at, :title

def initialize(title, publish_date, last_played_at, multiplayer: true, archived: false)
def initialize(title, publish_date, last_played_at, multiplayer: true)
super(title, publish_date)
@multiplayer = multiplayer
@last_played_at = DateTime.parse(last_played_at)
Expand Down

0 comments on commit 9b0f02c

Please sign in to comment.