From 103d6a9293e3bf9217c98525f05087c2f2a2d56d Mon Sep 17 00:00:00 2001 From: raf Date: Thu, 22 Jun 2023 12:54:34 +0100 Subject: [PATCH] chore: mypy --- moto/ssm/exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/ssm/exceptions.py b/moto/ssm/exceptions.py index 14bb94c68..29813c22d 100644 --- a/moto/ssm/exceptions.py +++ b/moto/ssm/exceptions.py @@ -144,7 +144,7 @@ class ParameterMaxVersionLimitExceeded(JsonRESTError): class ParameterAlreadyExists(JsonRESTError): code = 400 - def __init__(self): + def __init__(self) -> None: super().__init__( "ParameterAlreadyExists", "The parameter already exists. To overwrite this value, set the overwrite option in the request to true.",