projects
/
python_utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f4f303f
)
We don't need this.
author
Scott Gasch
<scott@gasch.org>
Sat, 24 Apr 2021 00:14:49 +0000
(17:14 -0700)
committer
Scott Gasch
<scott@gasch.org>
Sat, 24 Apr 2021 00:14:49 +0000
(17:14 -0700)
predicate.py
[deleted file]
patch
|
blob
|
history
diff --git
a/predicate.py
b/predicate.py
deleted file mode 100644
(file)
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