From 36605ec506e66a5ff3aaa397c8235821e38746da Mon Sep 17 00:00:00 2001 From: Diogo Sousa Date: Mon, 13 May 2024 16:44:17 +0100 Subject: [PATCH] fix: remove from provider --- .../core/openbb_core/provider/abstract/provider.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/openbb_platform/core/openbb_core/provider/abstract/provider.py b/openbb_platform/core/openbb_core/provider/abstract/provider.py index 6da989d807a8..756060ba59bc 100644 --- a/openbb_platform/core/openbb_core/provider/abstract/provider.py +++ b/openbb_platform/core/openbb_core/provider/abstract/provider.py @@ -19,7 +19,6 @@ def __init__( repr_name: Optional[str] = None, v3_credentials: Optional[List[str]] = None, instructions: Optional[str] = None, - logo_url: Optional[str] = None, ) -> None: """Initialize the provider. @@ -41,8 +40,6 @@ def __init__( List of corresponding v3 credentials, by default None. instructions: Optional[str] Instructions on how to setup the provider. For example, how to get an API key. - logo_url: Optional[str] - Provider logo URL. """ self.name = name self.description = description @@ -57,4 +54,3 @@ def __init__( self.repr_name = repr_name self.v3_credentials = v3_credentials self.instructions = instructions - self.logo_url = logo_url