Remove noqa comment

This commit is contained in:
Jonathan Kim 2020-02-08 11:10:17 +00:00
parent 99adb981d7
commit 815408a6d4

View File

@ -19,4 +19,4 @@ def to_snake_case(name):
def to_const(string): def to_const(string):
return re.sub(r"[\W|^]+", "_", unidecode(string)).upper() # noqa return re.sub(r"[\W|^]+", "_", unidecode(string)).upper()