diff --git a/flake8_async/visitors/visitor2xx.py b/flake8_async/visitors/visitor2xx.py index cd416d1..91df95d 100644 --- a/flake8_async/visitors/visitor2xx.py +++ b/flake8_async/visitors/visitor2xx.py @@ -120,7 +120,7 @@ def visit_blocking_call(self, node: ast.Call): class Visitor212(Visitor200): error_codes: Mapping[str, str] = { "ASYNC212": ( - "Blocking sync HTTP call {1} on httpx object {0}, use httpx.AsyncClient." + "Blocking sync HTTP call {0} on httpx object {1}, use httpx.AsyncClient." ) }