From 205429e5f9d2883cbf606aa30e857f399aafa585 Mon Sep 17 00:00:00 2001 From: Krish <58070586+krish1010@users.noreply.github.com> Date: Tue, 21 Mar 2023 15:22:56 +0530 Subject: [PATCH] fixed BasicAuth enum refactored `BasicAuth = auto` to `BasicAuth = auto()` --- custom_connector_sdk/connector/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_connector_sdk/connector/auth.py b/custom_connector_sdk/connector/auth.py index 1cf0c8b..349aa94 100644 --- a/custom_connector_sdk/connector/auth.py +++ b/custom_connector_sdk/connector/auth.py @@ -302,7 +302,7 @@ class AuthenticationType(Enum): """Enum of Authentication Types""" # Basic Authentication credentials. - BasicAuth = auto + BasicAuth = auto() # Custom Authentication credentials. CustomAuth = auto() # OAuth2 Authentication credentials.