srlp/repository.py

13 lines
229 B
Python
Raw Normal View History

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