From 847e35dca4ee0a4a4776d3712943ebb99a138dc0 Mon Sep 17 00:00:00 2001 From: Florian Greinacher Date: Tue, 14 May 2024 10:34:30 +0200 Subject: [PATCH] style: format code --- lib/util/http/gitlab.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/util/http/gitlab.ts b/lib/util/http/gitlab.ts index 040dca8765052e..3779552e8f728f 100644 --- a/lib/util/http/gitlab.ts +++ b/lib/util/http/gitlab.ts @@ -85,7 +85,11 @@ export class GitlabHttp extends Http { } } - protected override calculateRetryDelay({ error, attemptCount, retryOptions }: RetryObject): number { + protected override calculateRetryDelay({ + error, + attemptCount, + retryOptions, + }: RetryObject): number { if ( attemptCount <= retryOptions.limit && error.options.method === 'POST' &&