fix check_for_async_http_handler

This commit is contained in:
Ishaan Jaff 2024-11-21 10:30:16 -08:00
parent d4dc8e60b6
commit bb75af618f

View file

@ -39,7 +39,7 @@ def check_for_async_http_handler(file_path):
name.lower() for name in target_names
]:
raise ValueError(
f"found violation in file {file_path} line: {node.lineno}"
f"found violation in file {file_path} line: {node.lineno}. Please use `get_async_httpx_client` instead."
)
return violations