From 986d9e2bb755ac3c2e5d496a4a228259c4354355 Mon Sep 17 00:00:00 2001 From: Vinicius Stock Date: Tue, 26 Apr 2022 16:24:07 -0400 Subject: [PATCH] Remove argument forwarding --- lib/syntax_tree/formatter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/syntax_tree/formatter.rb b/lib/syntax_tree/formatter.rb index 7015a837..3cdbf20e 100644 --- a/lib/syntax_tree/formatter.rb +++ b/lib/syntax_tree/formatter.rb @@ -9,8 +9,8 @@ class Formatter < PP attr_reader :source, :stack, :quote - def initialize(source, ...) - super(...) + def initialize(source, *args) + super(*args) @source = source @stack = []