Skip to content

Commit

Permalink
Switch lint to flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Teschl committed Aug 7, 2024
1 parent 4a792d3 commit 2e21ea0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,11 @@ jobs:
pip install matplotlib
pip install rasterio
- name: Run pylint
run: pylint src/topotoolbox/
- name: Run flake8
run: flake8 src/topotoolbox

#- name: Run pylint
# run: pylint src/topotoolbox/

- name: Run type checks
run: mypy --follow-imports=skip --ignore-missing-imports src/topotoolbox
4 changes: 2 additions & 2 deletions src/topotoolbox/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from .grid_object import *
from .utils import *
from .grid_object import * # noqa
from .utils import * # noqa

0 comments on commit 2e21ea0

Please sign in to comment.