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
199 B
Python
Raw Normal View History

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