Skip to content

Commit

Permalink
Ignore unused imports with mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
theelderbeever committed Jun 27, 2023
1 parent b31a4eb commit e65f831
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ setup-dat: ## Download DAT test files
mkdir -p dat-data
rm -rf dat-data/v$(DAT_VERSION)
curl -L --silent --output dat-data/deltalake-dat-v$(DAT_VERSION).tar.gz \
https://github.com/delta-incubator/dat/releases/download/v$(DAT_VERSION)/deltalake-dat-v$(DAT_VERSION).tar.gz
https://github.com/delta-incubator/dat/releases/download/v$(DAT_VERSION)/deltalake-dat-v$(DAT_VERSION).tar.gz
tar --no-same-permissions -xzf dat-data/deltalake-dat-v$(DAT_VERSION).tar.gz
mv out dat-data/v$(DAT_VERSION)
rm dat-data/deltalake-dat-v$(DAT_VERSION).tar.gz
Expand Down Expand Up @@ -70,7 +70,7 @@ check-python: ## Run check on Python
$(info Check Python ruff)
ruff check .
$(info Check Python mypy)
mypy
mypy --no-warn-unused-ignores

.PHONY: unit-test
unit-test: ## Run unit test
Expand Down

0 comments on commit e65f831

Please sign in to comment.