Skip to content

Commit

Permalink
Undo linting
Browse files Browse the repository at this point in the history
  • Loading branch information
pacso committed May 10, 2024
1 parent 80f77fe commit b0693e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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
4 changes: 2 additions & 2 deletions lib/ice_cube/rule.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ def self.from_ical(ical)
end

# Yaml implementation
def to_yaml(*)
YAML.dump(to_hash, *)
def to_yaml(*args)
YAML.dump(to_hash, *args)
end

# From yaml
Expand Down

0 comments on commit b0693e3

Please sign in to comment.