From d1b1ad733f588961323e6172f9db2c32fff8dc60 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Thu, 27 Dec 2018 09:39:18 +0000 Subject: [PATCH] Ignore flake8 error --- graphene/utils/str_converters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graphene/utils/str_converters.py b/graphene/utils/str_converters.py index d8804038..2d455d5d 100644 --- a/graphene/utils/str_converters.py +++ b/graphene/utils/str_converters.py @@ -18,4 +18,4 @@ def to_snake_case(name): def to_const(string): - return re.sub("[\W|^]+", "_", string).upper() + return re.sub("[\W|^]+", "_", string).upper() # noqa