feat: Add line count to file patch info and enhance PR description formatting

This commit is contained in:
mrT23
2023-12-06 15:29:45 +02:00
parent 4b073b32a5
commit eeb20b055a
4 changed files with 52 additions and 29 deletions

View File

@ -26,6 +26,8 @@ class FilePatchInfo:
tokens: int = -1
edit_type: EDIT_TYPE = EDIT_TYPE.UNKNOWN
old_filename: str = None
num_plus_lines: int = -1
num_minus_lines: int = -1
class GitProvider(ABC):