Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (#2)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/pre-commit/pre-commit-hooks: v4.4.0 → v4.6.0](pre-commit/pre-commit-hooks@v4.4.0...v4.6.0)
- [github.com/pycqa/isort: 5.12.0 → 5.13.2](PyCQA/isort@5.12.0...5.13.2)
- [github.com/PyCQA/flake8: 6.0.0 → 7.1.1](PyCQA/flake8@6.0.0...7.1.1)
- [github.com/asottile/pyupgrade: v3.9.0 → v3.17.0](asottile/pyupgrade@v3.9.0...v3.17.0)
- [github.com/psf/black: 23.7.0 → 24.8.0](psf/black@23.7.0...24.8.0)
- https://github.com/pre-commit/mirrors-autopep8https://github.com/hhatto/autopep8
- [github.com/hhatto/autopep8: v2.0.2 → v2.3.1](hhatto/autopep8@v2.0.2...v2.3.1)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Mario Hernandez <[email protected]>
  • Loading branch information
pre-commit-ci[bot] and mariofix authored Sep 24, 2024
1 parent c88fc15 commit be54385
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: v4.4.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
Expand All @@ -12,27 +12,27 @@ repos:
- id: check-added-large-files
- id: debug-statements
- repo: https://github.com/pycqa/isort
rev: 5.12.0
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/PyCQA/flake8
rev: "6.0.0"
rev: "7.1.1"
hooks:
- id: flake8
additional_dependencies:
- flake8-comprehensions
- toml
exclude: docs\/.*
- repo: https://github.com/asottile/pyupgrade
rev: v3.9.0
rev: v3.17.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/psf/black
rev: "23.7.0"
rev: "24.8.0"
hooks:
- id: black
- repo: https://github.com/pre-commit/mirrors-autopep8
rev: v2.0.2
- repo: https://github.com/hhatto/autopep8
rev: v2.3.1
hooks:
- id: autopep8
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def mollie_payment():
currency = fake.currency_code()
amount = fake.pydecimal(right_digits=2, min_value=1, max_value=999)
description = fake.sentence()
checkout_url = f"https://khipu.test/checkout/{fake.password(length=10,special_chars=False)}/"
checkout_url = f"https://khipu.test/checkout/{fake.password(length=10, special_chars=False)}/"

data = {
"id": transaction_id,
Expand Down

0 comments on commit be54385

Please sign in to comment.