Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Apr 29, 2024
1 parent 2112e2d commit 9c52f28
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ long_description_content_type = text/markdown
url = https://github.com/isidentical/source
author = isidentical
author_email = [email protected]
license_file = LICENSE.txt
license_files = LICENSE.txt
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Expand Down
3 changes: 1 addition & 2 deletions source/protocols/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,4 @@ def get_executor(self):
with executor as pool:
yield pool.map

def execute(self, orders: Tuple[Order]) -> Tuple[Order]:
...
def execute(self, orders: Tuple[Order]) -> Tuple[Order]: ...
6 changes: 2 additions & 4 deletions source/providers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,7 @@
class BaseProvider:
SUPPORTED_QUALIFIERS: Tuple[Qualifier] = ()

def provide(self, shard: Shard) -> Tuple[Order]:
...
def provide(self, shard: Shard) -> Tuple[Order]: ...


class InsufficientResults(ValueError):
...
class InsufficientResults(ValueError): ...

0 comments on commit 9c52f28

Please sign in to comment.