Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #115

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: check-yaml
- id: debug-statements
Expand All @@ -12,12 +12,12 @@ repos:
- id: reorder-python-imports
args: [--application-directories, '.:src', --py37-plus]
- repo: https://github.com/psf/black
rev: 23.12.1
rev: 24.4.2
hooks:
- id: black
args: [--line-length=79]
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
rev: v3.15.2
hooks:
- id: pyupgrade
args: [--py37-plus]
Expand Down
1 change: 1 addition & 0 deletions src/rfc3986/_mixin.py
@@ -1,4 +1,5 @@
"""Module containing the implementation of the URIMixin class."""

import warnings

from . import exceptions as exc
Expand Down
1 change: 1 addition & 0 deletions src/rfc3986/exceptions.py
@@ -1,4 +1,5 @@
"""Exceptions module for rfc3986."""

from . import compat


Expand Down
1 change: 1 addition & 0 deletions src/rfc3986/iri.py
@@ -1,4 +1,5 @@
"""Module containing the implementation of the IRIReference class."""

# Copyright (c) 2014 Rackspace
# Copyright (c) 2015 Ian Stapleton Cordasco
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
1 change: 1 addition & 0 deletions src/rfc3986/uri.py
@@ -1,4 +1,5 @@
"""Module containing the implementation of the URIReference class."""

# Copyright (c) 2014 Rackspace
# Copyright (c) 2015 Ian Stapleton Cordasco
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
1 change: 1 addition & 0 deletions tests/test_validators.py
@@ -1,4 +1,5 @@
"""Tests for the validators module."""

import pytest

import rfc3986
Expand Down