From d8a7440a1b48d30f6a231bcad6e12b0797be1cc2 Mon Sep 17 00:00:00 2001 From: byhsu Date: Thu, 11 May 2023 20:48:24 -0700 Subject: [PATCH] lint! Signed-off-by: byhsu --- flytekit/clients/auth/authenticator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/flytekit/clients/auth/authenticator.py b/flytekit/clients/auth/authenticator.py index 6bbf4f873d..ad065b4129 100644 --- a/flytekit/clients/auth/authenticator.py +++ b/flytekit/clients/auth/authenticator.py @@ -4,11 +4,13 @@ from abc import abstractmethod from dataclasses import dataclass +import click + from . import token_client from .auth_client import AuthorizationClient from .exceptions import AccessTokenNotFoundError, AuthenticationError from .keyring import Credentials, KeyringStore -import click + @dataclass class ClientConfig: