mirror of
https://gerrit.googlesource.com/git-repo
synced 2025-07-02 20:17:19 +00:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
78dcd3799b |
@ -26,7 +26,7 @@ import socket
|
|||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import time
|
import time
|
||||||
from typing import NamedTuple
|
from typing import NamedTuple, List, Set
|
||||||
import urllib.error
|
import urllib.error
|
||||||
import urllib.parse
|
import urllib.parse
|
||||||
import urllib.request
|
import urllib.request
|
||||||
@ -94,19 +94,19 @@ class _FetchResult(NamedTuple):
|
|||||||
|
|
||||||
Attributes:
|
Attributes:
|
||||||
success (bool): True if successful.
|
success (bool): True if successful.
|
||||||
projects (set[str]): The names of the git directories of fetched projects.
|
projects (Set[str]): The names of the git directories of fetched projects.
|
||||||
"""
|
"""
|
||||||
success: bool
|
success: bool
|
||||||
projects: set[str]
|
projects: Set[str]
|
||||||
|
|
||||||
|
|
||||||
class _FetchMainResult(NamedTuple):
|
class _FetchMainResult(NamedTuple):
|
||||||
"""_FetchMain return value.
|
"""_FetchMain return value.
|
||||||
|
|
||||||
Attributes:
|
Attributes:
|
||||||
all_projects (list[Project]): The fetched projects.
|
all_projects (List[Project]): The fetched projects.
|
||||||
"""
|
"""
|
||||||
all_projects: list[Project]
|
all_projects: List[Project]
|
||||||
|
|
||||||
|
|
||||||
class _CheckoutOneResult(NamedTuple):
|
class _CheckoutOneResult(NamedTuple):
|
||||||
|
Reference in New Issue
Block a user