From 1cfb8ca8e8e1373f0dfdf89066fef1902f94acc5 Mon Sep 17 00:00:00 2001 From: Daniel Rodriguez Date: Mon, 2 Aug 2021 22:08:32 +0000 Subject: [PATCH] lint fix --- .../identity/src/credentials/staticTokenCredential.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sdk/identity/identity/src/credentials/staticTokenCredential.ts b/sdk/identity/identity/src/credentials/staticTokenCredential.ts index f2cc644dd7bd..74ad28e92879 100644 --- a/sdk/identity/identity/src/credentials/staticTokenCredential.ts +++ b/sdk/identity/identity/src/credentials/staticTokenCredential.ts @@ -33,7 +33,10 @@ export class StaticTokenCredential implements TokenCredential { * @param scopes - The list of scopes for which the token will have access. * @param options - The options used to configure any requests this TokenCredential implementation might make. */ - public async getToken(_scopes: string | string[], _options?: GetTokenOptions) { + public async getToken( + _scopes: string | string[], + _options?: GetTokenOptions + ): Promise { return this.accessToken; } }