From fa531f0d6f9a6b8832015afd4a0b7562214ef550 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix-local[bot]" <61578317+deepsource-autofix-local[bot]@users.noreply.github.com> Date: Tue, 8 Jun 2021 16:21:07 +0000 Subject: [PATCH] Change `NotImplemented` to `NotImplementedError` --- demo_code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo_code.py b/demo_code.py index db32dd49d..0cc8c159b 100644 --- a/demo_code.py +++ b/demo_code.py @@ -16,7 +16,7 @@ def __init__(self): self.limits = (1, 10) def get_number(self, min_max): - raise NotImplemented + raise NotImplementedError def smethod(): """static method-to-be"""