Skip to content

Commit 164344a

Browse files
committed
Merge branch 'master' into dev
2 parents 5e8b954 + d9405a4 commit 164344a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.pre-commit-config.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ exclude: |
1010
)
1111
repos:
1212
- repo: https://github.com/pre-commit/pre-commit-hooks
13-
rev: v3.4.0
13+
rev: v4.0.1
1414
hooks:
1515
- id: trailing-whitespace
1616
- id: end-of-file-fixer
@@ -21,16 +21,16 @@ repos:
2121
args: ["--autofix", "--indent=2", "--no-sort-keys"]
2222

2323
- repo: https://github.com/psf/black
24-
rev: 20.8b1
24+
rev: 21.9b0
2525
hooks:
2626
- id: black
2727

28-
- repo: https://gitlab.com/pycqa/flake8
29-
rev: 3.8.3
28+
- repo: https://github.com/PyCQA/flake8
29+
rev: 3.9.2
3030
hooks:
3131
- id: flake8
3232

3333
- repo: https://github.com/PyCQA/isort
34-
rev: 5.8.0
34+
rev: 5.9.3
3535
hooks:
3636
- id: isort

echopype/utils/io.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def get_file_format(file):
6262

6363

6464
def _get_suffix(filepath: Union[str, Path, FSMap]) -> str:
65-
""" Check if file type is supported. """
65+
"""Check if file type is supported."""
6666
# TODO: handle multiple files through the same set of checks for combining files
6767
if isinstance(filepath, FSMap):
6868
suffix = Path(filepath.root).suffix

0 commit comments

Comments
 (0)