diff --git a/github/Repository.py b/github/Repository.py index 061139bf..7d69720f 100644 --- a/github/Repository.py +++ b/github/Repository.py @@ -1939,7 +1939,7 @@ class Repository(github.GithubObject.CompletableGithubObject): """ :calls: `GET /repos/:owner/:repo/traffic/clones `_ :param per: string, must be one of day or week, day by default - :rtype: None or list of :class:`github.Clone.Clone` + :rtype: None or list of :class:`github.Clones.Clones` """ assert per is github.GithubObject.NotSet or ( isinstance(per, str) and (per == "day" or per == "week")