Skip to content

Commit 924ae11

Browse files
committed
Remove extraneous space
1 parent 43f9af2 commit 924ae11

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/invidious/connection/pool.cr

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,10 @@ module Invidious::ConnectionPool
3131
def {{method.id}}(*args, **kwargs, &)
3232
self.checkout do | client |
3333
client.{{method.id}}(*args, **kwargs) do | response |
34-
3534
result = yield response
3635
return result
37-
3836
ensure
39-
response.body_io?.try &. skip_to_end
37+
response.body_io?.try &.skip_to_end
4038
end
4139
end
4240
end
@@ -85,7 +83,6 @@ module Invidious::ConnectionPool
8583
pool.release(http_client) if http_client && client_exists_in_pool
8684
end
8785
end
88-
8986
class Error < Exception
9087
end
9188

0 commit comments

Comments
 (0)