refactor: add common base class to GitHubClient and LocalClient

Enables adding type checking to minimize mypy errors
This commit is contained in:
Robert Alonso
2024-10-28 18:01:56 +00:00
parent ef72f61bed
commit f1f17d8372
4 changed files with 19 additions and 12 deletions

View File

@@ -1,8 +1,9 @@
import os
import requests
import json
from Client import Client
class GitHubClient(object):
class GitHubClient(Client):
"""Basic client for getting the last diff and managing issues."""
existing_issues = []
milestones = []