Merge pull request #86 from Midnighter/refactor/clean

refactor: extend the `make clean` command
This commit is contained in:
Isaac Slavitt 2018-02-13 17:12:49 -05:00 committed by GitHub
commit be7f8d76b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ data: requirements
## Delete all compiled Python files ## Delete all compiled Python files
clean: clean:
find . -name "*.pyc" -exec rm {} \; find . -type f -name "*.py[co]" -delete
find . -type d -name "__pycache__" -delete
## Lint using flake8 ## Lint using flake8
lint: lint: