From 8d6f02c547a796acf21b057d8345faf729b24258 Mon Sep 17 00:00:00 2001 From: Jonathan Ehwald Date: Sun, 31 Jul 2022 02:29:21 +0200 Subject: [PATCH] Fix the lint and format make recipes --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index b69a074..b2b9281 100644 --- a/Makefile +++ b/Makefile @@ -5,14 +5,14 @@ dev: .PHONY: format format: - isort aiogqlc examples tests setup.py - black aiogqlc examples tests setup.py + isort aiogqlc tests setup.py + black aiogqlc tests setup.py .PHONY: lint lint: - flake8 aiogqlc examples tests setup.py - isort aiogqlc examples tests setup.py --check-only - black aiogqlc examples tests setup.py --check + flake8 aiogqlc tests setup.py + isort aiogqlc tests setup.py --check-only + black aiogqlc tests setup.py --check mypy aiogqlc .PHONY: test