From d603c84003dfce42ecaac7dbf7208f56082a53cb Mon Sep 17 00:00:00 2001 From: Joscha Schmiedt <joscha@schmiedt.dev> Date: Fri, 5 Apr 2024 22:00:51 +0200 Subject: [PATCH] Exclude currently untyped/unstable code from mypy --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 21ea40ac..9e4d30db 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,7 @@ lint: .PHONY: lint mypy: - mypy src/linkahead/common unittests + mypy src/linkahead/common unittests --exclude high_level_api.py --exclude connection.py .PHONY: mypy unittest: -- GitLab