Skip to content

Commit d7be24b

Browse files
committed
Remove redundant u'' unicode string markers
Signed-off-by: Philippe Ombredanne <[email protected]>
1 parent c2689a3 commit d7be24b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/attributecode/__init__.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ def clean_string(s):
103103

104104

105105
severities = {
106-
CRITICAL : u'CRITICAL',
107-
ERROR : u'ERROR',
108-
WARNING : u'WARNING',
109-
INFO : u'INFO',
110-
DEBUG : u'DEBUG',
111-
NOTSET : u'NOTSET'
106+
CRITICAL : 'CRITICAL',
107+
ERROR : 'ERROR',
108+
WARNING : 'WARNING',
109+
INFO : 'INFO',
110+
DEBUG : 'DEBUG',
111+
NOTSET : 'NOTSET'
112112
}

0 commit comments

Comments
 (0)