mrmp/repository.py

13 lines
229 B
Python
Raw Normal View History

2021-10-10 13:01:24 +00:00
import os
2021-10-10 12:48:12 +00:00
class Repository:
2021-10-10 13:01:24 +00:00
def __init__(self, location):
self.location = location
def __str__(self):
lines = [
f'Location: {self.location}',
]
return os.linesep.join(lines)