Skip to content

Commit

Permalink
Remove a pre-commit hook that doesn't work with black?
Browse files Browse the repository at this point in the history
  • Loading branch information
treyhunner committed May 10, 2024
1 parent 2fad54d commit 42c9803
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,6 @@ repos:
language: system
types: [python]
require_serial: true
- id: reorder-python-imports
name: Reorder python imports
entry: reorder-python-imports
language: system
types: [python]
args: [--application-directories=src]
- id: trailing-whitespace
name: Trim Trailing Whitespace
entry: trailing-whitespace-fixer
Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Sphinx configuration."""

from datetime import datetime


Expand Down
1 change: 1 addition & 0 deletions noxfile.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Nox sessions."""

import sys
from pathlib import Path
from textwrap import dedent
Expand Down
1 change: 1 addition & 0 deletions src/countdown/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Command-line interface."""

import re
import shutil
import sys
Expand Down
1 change: 1 addition & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""PyTest configuration."""

from _pytest.assertion import truncate

truncate.DEFAULT_MAX_LINES = 40
Expand Down
1 change: 1 addition & 0 deletions tests/test_main.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Test cases for the __main__ module."""

import os
import re
from textwrap import dedent
Expand Down

0 comments on commit 42c9803

Please sign in to comment.