From fa0d92b57949ccc70efcf28bb4651cb96febe138 Mon Sep 17 00:00:00 2001 From: Jon Pascoe Date: Thu, 18 Jul 2024 22:33:32 +0000 Subject: [PATCH] Revert linting changes --- lib/ice_cube/rule.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ice_cube/rule.rb b/lib/ice_cube/rule.rb index 6c4c96ef..30689267 100644 --- a/lib/ice_cube/rule.rb +++ b/lib/ice_cube/rule.rb @@ -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