From 83900a6c952d0004cb3d9c9eab7af4805cc3d4da Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Mon, 30 May 2022 17:42:51 +0200 Subject: [PATCH] returns bool --- followthemoney/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/followthemoney/helpers.py b/followthemoney/helpers.py index 59dbb2235..4c14202b0 100644 --- a/followthemoney/helpers.py +++ b/followthemoney/helpers.py @@ -88,7 +88,7 @@ def check_person_cutoff( entity: E, death_cutoff: datetime = datetime(2000, 1, 1), birth_cutoff: Optional[datetime] = None, -): +) -> bool: """Check if a person has been dead long enough to not be relevant for investigations any more.""" if not entity.schema.is_a("Person"):