1
0
Fork 0
mirror of https://github.com/Findus23/new-github-changelog-generator.git synced 2024-08-27 19:52:18 +02:00
new-github-changelog-generator/generator/repo.py

10 lines
222 B
Python

class Repo(object):
BASE_URL = "https://github.com/"
def __init__(self, path):
self.path = path
self.issues = []
@property
def absolute_url(self):
return self.BASE_URL + self.path