Skip to content

Commit

Permalink
fix lint issue
Browse files Browse the repository at this point in the history
Signed-off-by: zFernand0 <[email protected]>
  • Loading branch information
zFernand0 committed Jul 11, 2023
1 parent d757b8b commit 36858a0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/cli/src/config/auto-init/ApimlAutoInitHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ export default class ApimlAutoInitHandler extends BaseAutoInitHandler {
session.ISession.tokenValue = await Login.apimlLogin(session);
session.ISession.storeCookie = false;
session.ISession.type = SessConstants.AUTH_TYPE_TOKEN;
session.ISession.base64EncodedAuth = session.ISession.user = session.ISession.password = session.ISession.cert = session.ISession.certKey = undefined;

session.ISession.base64EncodedAuth =
session.ISession.user = session.ISession.password =
session.ISession.cert = session.ISession.certKey = undefined;
}

const restErrUnauthorized = 403;
Expand Down

0 comments on commit 36858a0

Please sign in to comment.