We don't need this.
authorScott Gasch <[email protected]>
Sat, 24 Apr 2021 00:14:49 +0000 (17:14 -0700)
committerScott Gasch <[email protected]>
Sat, 24 Apr 2021 00:14:49 +0000 (17:14 -0700)
predicate.py [deleted file]

diff --git a/predicate.py b/predicate.py
deleted file mode 100644 (file)
index 54c0775..0000000
+++ /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