diff --git a/jaraco/develop/github.py b/jaraco/develop/github.py index d390a51..0651c2f 100644 --- a/jaraco/develop/github.py +++ b/jaraco/develop/github.py @@ -24,6 +24,10 @@ class Repo(str): def __init__(self, name): self.session = self.get_session() + @property + def url(self): + return 'https://github.com/' + self + @classmethod @functools.lru_cache() def get_session(cls):