From 2fd5ee798243a4f55aab2ed2bd3b71dfc426b7de Mon Sep 17 00:00:00 2001 From: Sigurd Pettersen Date: Thu, 14 Sep 2023 16:57:30 +0200 Subject: [PATCH] Removed None as attribute type until we're sure we need it --- backend/src/services/types/well_completion_types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/services/types/well_completion_types.py b/backend/src/services/types/well_completion_types.py index fbaa0214b..0df76ca7a 100644 --- a/backend/src/services/types/well_completion_types.py +++ b/backend/src/services/types/well_completion_types.py @@ -2,7 +2,7 @@ from typing import Dict, List, Optional, Union -WellCompletionAttributeType = Union[str, int, bool, None] +WellCompletionAttributeType = Union[str, int, bool] class Completions(BaseModel):