From 328ed79a50cfd7882991120e208a09306a1fe030 Mon Sep 17 00:00:00 2001 From: Alex Nelson Date: Tue, 1 Oct 2024 09:24:41 -0400 Subject: [PATCH] Type initializer Signed-off-by: Alex Nelson --- pyshacl/errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyshacl/errors.py b/pyshacl/errors.py index 0e0a18e..e8e3f0b 100644 --- a/pyshacl/errors.py +++ b/pyshacl/errors.py @@ -2,7 +2,7 @@ class ReportableRuntimeError(RuntimeError): - def __init__(self, message): + def __init__(self, message: str) -> None: self.message = message @property