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/formatters/base.py

12 lines
194 B
Python
Raw Normal View History

2019-02-03 14:10:17 +01:00
from typing import List
2019-02-03 16:33:44 +01:00
from generator import Repo
2019-02-03 14:10:17 +01:00
class BaseFormatter:
2019-02-03 16:33:44 +01:00
def __init__(self, repos: List[Repo]):
self.repos = repos
2019-02-03 14:10:17 +01:00
def __str__(self) -> str:
return ""