Skip to content

Commit

Permalink
refactor: pre-commit.ci auto fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Mar 4, 2024
1 parent 20865c4 commit 97c9ccb
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/querpyable/querpyable.py
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,7 @@ def __call__(self, source: Iterable[T]) -> Iterable[T]:

class ThenByDescending(Unary):
"""Unary operation that performs a secondary descending order based on a key
selector.
"""
selector."""

def __init__(self, key_selector: Callable[[T], U]) -> None:
"""Initialize the ThenByDescending operation.
Expand All @@ -295,8 +294,7 @@ def __call__(self, source: Iterable[T]) -> Iterable[T]:

class Join(Binary):
"""Binary operation that joins two iterables based on key selectors and applies a
result selector.
"""
result selector."""

def __init__(
self,
Expand Down

0 comments on commit 97c9ccb

Please sign in to comment.