Skip to content

Commit ca1ceff

Browse files
committed
Fix return type of __str__
1 parent 6f7adbb commit ca1ceff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

batch_mailchimp/collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class MyCollection(UserDict):
55
def __str__(self):
6-
return str(list(self.data.values())),
6+
return str(list(self.data.values()))
77

88
def __repr__(self):
99
return "<{module}.{name}: {str_rep}>".format(

0 commit comments

Comments
 (0)