From 3adacdc86b0e0fdcb325b3546331e9f1294b2d97 Mon Sep 17 00:00:00 2001 From: Marcel Wilson Date: Thu, 12 Oct 2023 09:25:13 -0500 Subject: [PATCH] removing test protocol that isn't used and causes issues with isinstance against ErrorKeeper --- tests/unittest_protocols.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/unittest_protocols.py b/tests/unittest_protocols.py index 9022c2c..a1ef169 100644 --- a/tests/unittest_protocols.py +++ b/tests/unittest_protocols.py @@ -1,6 +1,6 @@ from typing import Protocol, runtime_checkable -from screenpy import Answerable, Describable, ErrorKeeper, Forgettable, Performable +from screenpy import Answerable, Describable, Forgettable, Performable from screenpy_selenium import Chainable @@ -10,11 +10,6 @@ class Question(Answerable, Describable, Protocol): ... -@runtime_checkable -class ErrorQuestion(Answerable, Describable, ErrorKeeper, Protocol): - ... - - @runtime_checkable class Action(Performable, Describable, Protocol): ...