Addressing comments

This commit is contained in:
Karthik Nadig 2018-03-15 22:46:06 -07:00
parent 7ac28225ff
commit 245df5efe5

View file

@ -29,7 +29,7 @@ class SafeRepr(object):
string_types = (str, bytes)
set_info = (set, '{', '}', False)
frozenset_info = (frozenset, 'frozenset({', '})', False)
int_types = (int)
int_types = (int,)
else:
string_types = (str, unicode)
set_info = (set, 'set([', '])', False)