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

11 lines
199 B
Python

from typing import List
from generator import Issue
class BaseFormatter:
def __init__(self, issues: List[Issue]):
self.issues = issues
def __str__(self) -> str:
return ""