From 5f332cc4fa43126c31d306e63225f06f09f5800e Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Mon, 13 Dec 2021 18:03:24 +0100 Subject: [PATCH] 2019: d07: ex1: quieten Mypy --- 2019/d07/ex1/ex1.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/2019/d07/ex1/ex1.py b/2019/d07/ex1/ex1.py index 1808ec8..5bea100 100755 --- a/2019/d07/ex1/ex1.py +++ b/2019/d07/ex1/ex1.py @@ -1,5 +1,9 @@ #!/usr/bin/env python +# Mypy has issues with assigning Callable to fields of objects +# See https://github.com/python/mypy/issues/708 +# type: ignore + import itertools import sys from copy import deepcopy