From: Scott Gasch Date: Sat, 24 Apr 2021 00:14:49 +0000 (-0700) Subject: We don't need this. X-Git-Url: https://wannabe.guru.org/gitweb/?a=commitdiff_plain;h=5724b9e4f9e7f157e70badaf46c6dd4b3187ac54;hp=f4f303f79a478d37f9756cd4f26fab130fc62e2b;p=python_utils.git We don't need this. --- 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