From a8d8159d27081a7e25ed78e6a5e36a1496ed5336 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Tue, 7 Jul 2020 13:15:46 +0200 Subject: [PATCH] Add missing async/await keywords when casing --- betterproto/casing.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/betterproto/casing.py b/betterproto/casing.py index 543df68..c8dc2e2 100644 --- a/betterproto/casing.py +++ b/betterproto/casing.py @@ -20,6 +20,8 @@ def safe_snake_case(value: str) -> str: "and", "as", "assert", + "async", + "await", "break", "class", "continue",