From 815408a6d4926ec747b8ace6a577eee21028d9d2 Mon Sep 17 00:00:00 2001 From: Jonathan Kim Date: Sat, 8 Feb 2020 11:10:17 +0000 Subject: [PATCH] Remove noqa comment --- 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 00e2196c..9ac8461f 100644 --- a/graphene/utils/str_converters.py +++ b/graphene/utils/str_converters.py @@ -19,4 +19,4 @@ def to_snake_case(name): def to_const(string): - return re.sub(r"[\W|^]+", "_", unidecode(string)).upper() # noqa + return re.sub(r"[\W|^]+", "_", unidecode(string)).upper()