From 56d15077fbb01606267f2761c9240439b204b13e Mon Sep 17 00:00:00 2001 From: Eric Joanis Date: Wed, 11 Dec 2024 17:05:12 -0500 Subject: [PATCH] style: bump pre-commit-hooks and isort in pre-commit config --- .pre-commit-config.yaml | 4 ++-- py/test/test_endpointer.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index c9ce4ef4..48cbc196 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v3.2.0 + rev: v5.0.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer @@ -17,7 +17,7 @@ repos: hooks: - id: mypy - repo: https://github.com/PyCQA/isort - rev: 5.11.4 + rev: 5.13.2 hooks: - id: isort args: [--profile=black] diff --git a/py/test/test_endpointer.py b/py/test/test_endpointer.py index b17c65a7..fb3d60d0 100644 --- a/py/test/test_endpointer.py +++ b/py/test/test_endpointer.py @@ -4,6 +4,7 @@ import unittest import numpy as np + from soundswallower import Endpointer DATADIR = os.path.join(os.path.dirname(__file__), "..", "..", "tests", "data")