summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--predicate.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/predicate.py b/predicate.py
deleted file mode 100644
index 54c0775..0000000
--- a/predicate.py
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/usr/bin/env python3
-
-from abc import ABC, abstractmethod
-from typing import Any
-
-
-class Predicate(ABC):
- def __init__(self):
- super().__init__()
-
- @abstractmethod
- def apply(self, item: Any) -> bool:
- pass