f36e2104d8
sep-tests / ragflow_preflight (push) Waiting to run
sep-tests / ragflow_tests_infinity (push) Blocked by required conditions
sep-tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
tests / ragflow_preflight (push) Waiting to run
tests / ragflow_tests_infinity (push) Blocked by required conditions
tests / ragflow_tests_elasticsearch (push) Blocked by required conditions
16 lines
484 B
Python
16 lines
484 B
Python
from typing import Any
|
|
|
|
from github import Repository
|
|
from github.Requester import Requester
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class SerializedRepository(BaseModel):
|
|
# id is part of the raw_data as well, just pulled out for convenience
|
|
id: int
|
|
headers: dict[str, str | int]
|
|
raw_data: dict[str, Any]
|
|
|
|
def to_Repository(self, requester: Requester) -> Repository.Repository:
|
|
return Repository.Repository(requester, self.headers, self.raw_data, completed=True)
|