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 8, 2024
1 parent c624300 commit 563b9b9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 1 addition & 1 deletion aiozipkin/transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@


DEFAULT_TIMEOUT = aiohttp.ClientTimeout(total=5 * 60)
BATCHES_MAX_COUNT = 10 ** 4
BATCHES_MAX_COUNT = 10**4

DataList = List[Dict[str, Any]]
SndBatches = Deque[Tuple[int, DataList]]
Expand Down
4 changes: 0 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@
from setuptools import find_packages, setup # type: ignore


if sys.version_info < (3, 6, 0):
raise RuntimeError("aiozipkin does not support Python earlier than 3.6.0")


def read(f: str) -> str:
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()

Expand Down

0 comments on commit 563b9b9

Please sign in to comment.