From c148ac2f4dbf8adfe5afacd7c983048ac970fdbf Mon Sep 17 00:00:00 2001 From: Jason Munro Date: Wed, 3 May 2023 17:27:38 -0700 Subject: [PATCH] Remove repeated setting (#790) --- mp_api/client/core/settings.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mp_api/client/core/settings.py b/mp_api/client/core/settings.py index a858c363..2cc1ccca 100644 --- a/mp_api/client/core/settings.py +++ b/mp_api/client/core/settings.py @@ -78,11 +78,6 @@ class MAPIClientSettings(BaseSettings): description="Number of characters to use to define the maximum length of a given HTTP URL.", ) - MAX_HTTP_URL_LENGTH: int = Field( - _MAX_HTTP_URL_LENGTH, - description="Number of characters to use to define the maximum length of a given HTTP URL.", - ) - MIN_EMMET_VERSION: str = Field( "0.54.0", description="Minimum compatible version of emmet-core for the client." )