diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 32a77a5..46fc60d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/psf/black - rev: 23.12.0 + rev: 24.1.1 hooks: - id: black language_version: python3.8 diff --git a/tests/command.py b/tests/command.py index ccfa4d3..8d8fad3 100644 --- a/tests/command.py +++ b/tests/command.py @@ -1,4 +1,5 @@ """Helpers for testing commands.""" + from __future__ import print_function import logging import sys diff --git a/tests/shared/test_task_interface.py b/tests/shared/test_task_interface.py index 1304328..7fe6715 100644 --- a/tests/shared/test_task_interface.py +++ b/tests/shared/test_task_interface.py @@ -1,4 +1,5 @@ """Tests ensuring all task modules have a consistent interface.""" + import argparse import sys import pytest