From 0f1227584448f426d9832952cf4b998674f100ec Mon Sep 17 00:00:00 2001 From: EmileSonneveld Date: Fri, 8 May 2026 11:43:35 +0200 Subject: [PATCH] Revert "Allow message as first un-named argument. " --- openeo/rest/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openeo/rest/__init__.py b/openeo/rest/__init__.py index 996e145de..37b3a8170 100644 --- a/openeo/rest/__init__.py +++ b/openeo/rest/__init__.py @@ -81,10 +81,10 @@ class OpenEoApiError(OpenEoApiPlainError): def __init__( self, - message: str, *, http_status_code: int, code: str, + message: str, id: Optional[str] = None, url: Optional[str] = None, ):