From 37d055582e193363abd3ceddffc91a54ee18aea7 Mon Sep 17 00:00:00 2001 From: Alexander Emelin Date: Mon, 25 Mar 2024 20:03:51 +0200 Subject: [PATCH] fix lint --- lib/cent/http.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cent/http.rb b/lib/cent/http.rb index aa7e407..b665c3f 100644 --- a/lib/cent/http.rb +++ b/lib/cent/http.rb @@ -12,7 +12,7 @@ class ResponseError < Error def initialize(code:, message:) @code = code - super message + super(message) end end