summaryrefslogtreecommitdiff
path: root/predicate.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-04-23 17:14:49 -0700
committerScott Gasch <[email protected]>2021-04-23 17:14:49 -0700
commit5724b9e4f9e7f157e70badaf46c6dd4b3187ac54 (patch)
tree9cea5823860de8ad30fca21f390eb8b5726a651f /predicate.py
parentf4f303f79a478d37f9756cd4f26fab130fc62e2b (diff)
We don't need this.
Diffstat (limited to 'predicate.py')
-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