Ignore flake8 error

This commit is contained in:
Jonathan Kim 2018-12-27 09:39:18 +00:00
parent e1a2eb5a35
commit d1b1ad733f

View File

@ -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