Skip to content

Commit 059f6b8

Browse files
author
Michael Recachinas
committed
Removed comma
`self.created = created,` builds a tuple in `self.created`. This appears to be a mistake. See below for an example: ```python >>> x = 3, >>> x (3,) ```
1 parent dc50f0a commit 059f6b8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

imgurpython/imgur/models/account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ def __init__(self, id, url, bio, reputation, created, pro_expiration):
55
self.url = url
66
self.bio = bio
77
self.reputation = reputation
8-
self.created = created,
8+
self.created = created
99
self.pro_expiration = pro_expiration

0 commit comments

Comments
 (0)