diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-10-22 19:24:58 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-10-22 19:24:58 -0700 |
commit | 331288cd15d471b2ae362bf6c990f627686067d8 (patch) | |
tree | 1a8d0347b75cf2565e769067d6ae3887d1632474 | |
parent | fa1e2b68fdc8426b0e6239c65361b605eba5fe7b (diff) | |
download | grobid_tei_xml-331288cd15d471b2ae362bf6c990f627686067d8.tar.gz grobid_tei_xml-331288cd15d471b2ae362bf6c990f627686067d8.zip |
make: fix test imports with fmt
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ lint: ## Run lints (eg, flake8, mypy) .PHONY: fmt fmt: ## Run code formating on all source code - pipenv run isort --atomic grobid_tei_xml/*.py + pipenv run isort --atomic grobid_tei_xml/*.py tests/*.py pipenv run yapf -p -i -r grobid_tei_xml tests .PHONY: test |