From 2f33fdf7b604a14abc049f06fc0bd4060ee57198 Mon Sep 17 00:00:00 2001 From: Emile Sonneveld Date: Fri, 8 May 2026 10:01:48 +0200 Subject: [PATCH] Allow message as first un-named argument. https://github.com/Open-EO/openeo-python-client/issues/894 --- 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 37b3a8170..996e145de 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, ):