From: Harmon Date: Thu, 27 May 2021 09:52:18 +0000 (-0500) Subject: Fix typo in User.__str__ X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=78a97881185f2895ea9c7ff4800237d51f274f8d;p=tweepy.git Fix typo in User.__str__ Fixes #1592 --- diff --git a/tweepy/user.py b/tweepy/user.py index 2a6afd2..844a901 100644 --- a/tweepy/user.py +++ b/tweepy/user.py @@ -45,5 +45,5 @@ class User(HashableID, DataMapping): def __repr__(self): return f"" - def __str__(Self): + def __str__(self): return self.username