Skip to content

Commit

Permalink
Reformat code after black upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospri committed Jun 7, 2024
1 parent e4de2a2 commit e1b89c8
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/h_matchers/interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""The public interface class for comparing with things."""

from h_matchers.matcher import collection
from h_matchers.matcher import number as _number
from h_matchers.matcher.anything import AnyThing
Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/anything.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A matcher that matches anything."""

from h_matchers.matcher.core import Matcher


Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/collection/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Flexible matchers for various collection types in a fluent style."""

from types import GeneratorType

from h_matchers.exception import NoMatch
Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/collection/_mixin/contains.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A mixin for AnyCollection which lets you check for specific items."""

from types import GeneratorType

from h_matchers.decorator import fluent_entrypoint
Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/combination.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Matchers formed of combinations of other things."""

from h_matchers.matcher.core import Matcher


Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/object.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Matchers for simple objects."""

from h_matchers.decorator import fluent_entrypoint
from h_matchers.matcher.core import Matcher

Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/web/request.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A matcher that matches various request objects in HTTP type libraries."""

from copy import deepcopy

from h_matchers.decorator import fluent_entrypoint
Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/web/url/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
Any.url(path="/foo") == "foo" # True
Any.url(path="foo") == "/foo" # True
"""

import re
from collections import Counter
from urllib.parse import parse_qsl, urlparse
Expand Down
1 change: 1 addition & 0 deletions src/h_matchers/matcher/web/url/fluent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""A fluent interface over AnyURLCore for matching URLs."""

from h_matchers.decorator import fluent_entrypoint
from h_matchers.matcher.collection import AnyMapping
from h_matchers.matcher.strings import AnyString
Expand Down
1 change: 1 addition & 0 deletions tests/unit/data_types.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Data types for testing the matchers."""

import enum
from decimal import Decimal

Expand Down

0 comments on commit e1b89c8

Please sign in to comment.