Skip to content

Commit

Permalink
Pre-commit autoupdate
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyNotHugo committed Jan 28, 2024
1 parent a5d686d commit 7389e9b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
rev: v4.5.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
Expand All @@ -9,7 +9,7 @@ repos:
- id: check-added-large-files
- id: debug-statements
- repo: https://github.com/psf/black
rev: "23.7.0"
rev: "24.1.1"
hooks:
- id: black
- repo: local
Expand All @@ -20,7 +20,7 @@ repos:
entry: mypy
types_or: [python, pyi]
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: 'v0.0.282'
rev: 'v0.1.14'
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand Down
2 changes: 1 addition & 1 deletion django_afip/management/commands/afipmetadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


class Command(BaseCommand):
help = _("Loads fixtures with metadata from AFIP.") # noqa: A003
help = _("Loads fixtures with metadata from AFIP.")
requires_migrations_checks = True

def handle(self, *args, **options) -> None:
Expand Down
1 change: 1 addition & 0 deletions testapp/wsgi.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
For more information on this file, see
https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/
"""

from __future__ import annotations

import os
Expand Down
1 change: 1 addition & 0 deletions tests/test_tags.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for provided template tags."""

from __future__ import annotations

from django_afip.templatetags.django_afip import format_cuit
Expand Down
1 change: 1 addition & 0 deletions tests/test_webservices.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Tests for AFIP-WS related classes."""

from __future__ import annotations

from datetime import date
Expand Down

0 comments on commit 7389e9b

Please sign in to comment.