Skip to content

Commit 86fc85f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent b42a6ef commit 86fc85f

File tree

10 files changed

+10
-0
lines changed

10 files changed

+10
-0
lines changed

src/rfc3986/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
:copyright: (c) 2014 Rackspace
2020
:license: Apache v2.0, see LICENSE for details
2121
"""
22+
2223
from .api import IRIReference
2324
from .api import URIReference
2425
from .api import iri_reference

src/rfc3986/abnf_regexp.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313
"""Module for the regular expressions crafted from ABNF."""
14+
1415
import sys
1516

1617
# https://tools.ietf.org/html/rfc3986#page-13

src/rfc3986/api.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
This module defines functions and provides access to the public attributes
1818
and classes of rfc3986.
1919
"""
20+
2021
import typing as t
2122

2223
from .iri import IRIReference

src/rfc3986/builder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Module containing the logic for the URIBuilder object."""
15+
1516
import typing as t
1617
from urllib.parse import parse_qsl
1718
from urllib.parse import urlencode

src/rfc3986/compat.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Compatibility module for Python 2 and 3 support."""
15+
1516
import typing as t
1617

1718
__all__ = (

src/rfc3986/misc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
This module contains important constants, patterns, and compiled regular
1818
expressions for parsing and validating URIs and their components.
1919
"""
20+
2021
import re
2122
import typing as t
2223

src/rfc3986/normalizers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Module with functions to normalize components."""
15+
1516
import re
1617
import typing as t
1718
from urllib.parse import quote as urlquote

src/rfc3986/parseresult.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Module containing the urlparse compatibility logic."""
15+
1516
import typing as t
1617
from collections import namedtuple
1718

src/rfc3986/validators.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Module containing the validation logic for rfc3986."""
15+
1516
import typing as t
1617

1718
from . import exceptions

tests/test_builder.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Module containing the tests for the URIBuilder object."""
15+
1516
try:
1617
from urllib.parse import parse_qs
1718
except ImportError:

0 commit comments

Comments
 (0)