Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pacso committed Apr 25, 2024
1 parent 59270b6 commit 0200791
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/ice_cube/i18n.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ module IceCube
module I18n
LOCALES_PATH = File.expand_path(File.join("..", "..", "..", "config", "locales"), __FILE__)

def self.t(*, **)
backend.t(*, **)
def self.t(*args, **kwargs)
backend.t(*args, **kwargs)
end

def self.l(*, **)
backend.l(*, **)
def self.l(*args, **kwargs)
backend.l(*args, **kwargs)
end

def self.backend
Expand Down

0 comments on commit 0200791

Please sign in to comment.