Skip to content

Commit 23125e3

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

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

examples/async_example.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ async def fetch_github_user(username: str) -> dict:
8282
if duration2 > 0:
8383
print(f" Cache speedup: {duration1 / duration2:.1f}x")
8484
else:
85-
print(" Cache speedup: instantaneous (duration too small to measure)")
85+
print(
86+
" Cache speedup: instantaneous (duration too small to measure)"
87+
)
8688

8789
except ImportError:
8890
msg = " (Skipping - httpx not installed. "

0 commit comments

Comments
 (0)