1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
|
from datetime import date, datetime
from typing import Any, Dict, List, Optional, Union, overload
from github.AuthenticatedUser import AuthenticatedUser
from github.Branch import Branch
from github.CheckRun import CheckRun
from github.CheckSuite import CheckSuite
from github.Clones import Clones
from github.Commit import Commit
from github.CommitComment import CommitComment
from github.Comparison import Comparison
from github.ContentFile import ContentFile
from github.Deployment import Deployment
from github.Download import Download
from github.Event import Event
from github.GitBlob import GitBlob
from github.GitCommit import GitCommit
from github.GithubObject import CompletableGithubObject, _NotSetType
from github.GitRef import GitRef
from github.GitRelease import GitRelease
from github.GitReleaseAsset import GitReleaseAsset
from github.GitTag import GitTag
from github.GitTree import GitTree
from github.Hook import Hook
from github.InputGitAuthor import InputGitAuthor
from github.InputGitTreeElement import InputGitTreeElement
from github.Invitation import Invitation
from github.Issue import Issue
from github.IssueComment import IssueComment
from github.IssueEvent import IssueEvent
from github.Label import Label
from github.Milestone import Milestone
from github.NamedUser import NamedUser
from github.Notification import Notification
from github.Organization import Organization
from github.PaginatedList import PaginatedList
from github.Path import Path
from github.Permissions import Permissions
from github.Project import Project
from github.PublicKey import PublicKey
from github.PullRequest import PullRequest
from github.PullRequestComment import PullRequestComment
from github.Referrer import Referrer
from github.RepositoryKey import RepositoryKey
from github.RepositoryPreferences import RepositoryPreferences
from github.SelfHostedActionsRunner import SelfHostedActionsRunner
from github.SourceImport import SourceImport
from github.Stargazer import Stargazer
from github.StatsCodeFrequency import StatsCodeFrequency
from github.StatsCommitActivity import StatsCommitActivity
from github.StatsContributor import StatsContributor
from github.StatsParticipation import StatsParticipation
from github.StatsPunchCard import StatsPunchCard
from github.Tag import Tag
from github.Team import Team
from github.View import View
from github.Workflow import Workflow
from github.WorkflowRun import WorkflowRun
class Repository(CompletableGithubObject):
def __repr__(self) -> str: ...
def _hub(
self, mode: str, event: str, callback: str, secret: Union[str, _NotSetType]
) -> None: ...
@property
def _identity(self) -> str: ...
def _initAttributes(self) -> None: ...
def _legacy_convert_issue(self, attributes: Dict[str, Any]) -> Dict[str, Any]: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
@property
def allow_merge_commit(self) -> bool: ...
@property
def allow_rebase_merge(self) -> bool: ...
@property
def allow_squash_merge(self) -> bool: ...
@property
def archived(self) -> bool: ...
def add_to_collaborators(
self,
collaborator: Union[str, NamedUser],
permission: Union[str, _NotSetType] = ...,
) -> None: ...
@property
def archive_url(self) -> str: ...
@property
def assignees_url(self) -> str: ...
@property
def blobs_url(self) -> str: ...
@property
def branches_url(self) -> str: ...
@property
def clone_url(self) -> str: ...
@property
def collaborators_url(self) -> str: ...
@property
def comments_url(self) -> str: ...
@property
def commits_url(self) -> str: ...
def compare(self, base: str, head: str) -> Comparison: ...
@property
def compare_url(self) -> str: ...
@property
def contents_url(self) -> str: ...
@property
def contributors_url(self) -> str: ...
def create_check_run(
self,
name: str = ...,
head_sha: str = ...,
details_url: Union[_NotSetType, str] = ...,
external_id: Union[_NotSetType, str] = ...,
status: Union[_NotSetType, str] = ...,
started_at: Union[_NotSetType, datetime] = ...,
conclusion: Union[_NotSetType, str] = ...,
completed_at: Union[_NotSetType, datetime] = ...,
output: Union[
_NotSetType, Dict[str, Union[str, List[Dict[str, Union[str, int]]]]]
] = ...,
actions: Union[_NotSetType, List[Dict[str, str]]] = ...,
) -> CheckRun: ...
def create_check_suite(self, head_sha: str) -> CheckSuite: ...
def create_deployment(
self,
ref: str,
task: Union[str, _NotSetType] = ...,
auto_merge: Union[bool, _NotSetType] = ...,
required_contexts: Union[List[str], _NotSetType] = ...,
payload: Union[Dict[str, Any], _NotSetType] = ...,
environment: Union[str, _NotSetType] = ...,
description: Union[str, _NotSetType] = ...,
transient_environment: Union[bool, _NotSetType] = ...,
production_environment: Union[bool, _NotSetType] = ...,
) -> Deployment: ...
def create_file(
self,
path: str,
message: str,
content: str,
branch: Union[str, _NotSetType] = ...,
committer: Union[InputGitAuthor, _NotSetType] = ...,
author: Union[InputGitAuthor, _NotSetType] = ...,
) -> Dict[str, Union[ContentFile, Commit]]: ...
def create_git_blob(self, content: str, encoding: str) -> GitBlob: ...
def create_git_commit(
self,
message: str,
tree: GitTree,
parents: List[GitCommit],
author: Union[InputGitAuthor, _NotSetType] = ...,
committer: Union[InputGitAuthor, _NotSetType] = ...,
) -> GitCommit: ...
def create_git_ref(self, ref: str, sha: str) -> GitRef: ...
def create_git_release(
self,
tag: str,
name: str,
message: str,
draft: bool = ...,
prerelease: bool = ...,
target_commitish: Union[str, _NotSetType] = ...,
) -> GitRelease: ...
def create_git_tag(
self,
tag: str,
message: str,
object: str,
type: str,
tagger: Union[InputGitAuthor, _NotSetType] = ...,
) -> GitTag: ...
def create_git_tag_and_release(
self,
tag: str,
tag_message: str,
release_name: str,
release_message: str,
object: str,
type: str,
tagger: Union[InputGitAuthor, _NotSetType] = ...,
draft: bool = ...,
prerelease: bool = ...,
) -> GitRelease: ...
def create_git_tree(
self,
tree: List[InputGitTreeElement],
base_tree: Union[GitTree, _NotSetType] = ...,
) -> GitTree: ...
def create_hook(
self,
name: str,
config: Dict[str, str],
events: Union[_NotSetType, List[str]] = ...,
active: Union[bool, _NotSetType] = ...,
) -> Hook: ...
def create_issue(
self,
title: str,
body: Union[str, _NotSetType] = ...,
assignee: Union[NamedUser, str, _NotSetType] = ...,
milestone: Union[Milestone, _NotSetType] = ...,
labels: Union[List[Label], _NotSetType, List[str]] = ...,
assignees: Union[_NotSetType, List[str], List[NamedUser]] = ...,
) -> Issue: ...
def create_key(
self, title: str, key: str, read_only: bool = ...
) -> RepositoryKey: ...
def create_label(
self, name: str, color: str, description: Union[str, _NotSetType] = ...
) -> Label: ...
def create_milestone(
self,
title: str,
state: Union[str, _NotSetType] = ...,
description: Union[str, _NotSetType] = ...,
due_on: Union[date, _NotSetType] = ...,
) -> Milestone: ...
def create_project(self, name: str, body: str = ...) -> Project: ...
@overload
def create_pull(
self,
title: str,
body: str,
base: str,
head: str,
maintainer_can_modify: Union[bool, _NotSetType] = _NotSetType(),
draft: bool = False,
issue: _NotSetType = _NotSetType(),
) -> PullRequest: ...
@overload
def create_pull(
self,
title: _NotSetType,
body: _NotSetType,
base: str,
head: str,
maintainer_can_modify: _NotSetType,
issue: Issue,
) -> PullRequest: ...
def create_repository_dispatch(
self, event_type: str, client_payload: Dict[str, Any]
) -> bool: ...
def create_secret(self, secret_name: str, unencrypted_value: str) -> bool: ...
def delete_secret(self, secret_name: str) -> bool: ...
def create_source_import(
self,
vcs: str,
vcs_url: str,
vcs_username: Union[str, _NotSetType] = ...,
vcs_password: Union[str, _NotSetType] = ...,
) -> SourceImport: ...
@property
def created_at(self) -> datetime: ...
@property
def default_branch(self) -> str: ...
def delete(self) -> None: ...
def delete_file(
self,
path: str,
message: str,
sha: str,
branch: Union[str, _NotSetType] = ...,
committer: Union[InputGitAuthor, _NotSetType] = ...,
author: Union[InputGitAuthor, _NotSetType] = ...,
) -> Dict[str, Union[Commit, _NotSetType]]: ...
@property
def delete_branch_on_merge(self) -> bool: ...
@property
def deployments_url(self) -> str: ...
@property
def description(self) -> str: ...
def disable_automated_security_fixes(self) -> bool: ...
def disable_vulnerability_alert(self) -> bool: ...
@property
def downloads_url(self) -> str: ...
def edit(
self,
name: Optional[str] = ...,
description: Union[str, _NotSetType] = ...,
homepage: Union[str, _NotSetType] = ...,
private: Union[bool, _NotSetType] = ...,
has_issues: Union[bool, _NotSetType] = ...,
has_projects: Union[bool, _NotSetType] = ...,
has_wiki: Union[bool, _NotSetType] = ...,
has_downloads: Union[bool, _NotSetType] = ...,
default_branch: Union[str, _NotSetType] = ...,
allow_squash_merge: Union[bool, _NotSetType] = ...,
allow_merge_commit: Union[bool, _NotSetType] = ...,
allow_rebase_merge: Union[bool, _NotSetType] = ...,
delete_branch_on_merge: Union[bool, _NotSetType] = ...,
archived: Union[bool, _NotSetType] = ...,
) -> None: ...
def enable_automated_security_fixes(self) -> bool: ...
def enable_vulnerability_alert(self) -> bool: ...
@property
def events_url(self) -> str: ...
@property
def fork(self) -> bool: ...
@property
def forks(self) -> int: ...
@property
def forks_count(self) -> int: ...
@property
def forks_url(self) -> str: ...
@property
def full_name(self) -> str: ...
def get_archive_link(
self, archive_format: str, ref: Union[str, _NotSetType] = ...
) -> str: ...
def get_assignees(self) -> PaginatedList[NamedUser]: ...
def get_branch(self, branch: str) -> Branch: ...
def get_branches(self) -> PaginatedList[Branch]: ...
def get_check_run(self, check_run_id: int) -> CheckRun: ...
def get_check_suite(self, check_suite_id: int) -> CheckSuite: ...
def get_clones_traffic(
self, per: Union[str, _NotSetType] = ...
) -> Dict[str, Union[int, List[Clones]]]: ...
def get_collaborator_permission(
self, collaborator: Union[str, NamedUser]
) -> str: ...
def get_collaborators(
self, affiliation: Union[str, _NotSetType] = ...
) -> PaginatedList[NamedUser]: ...
def get_comment(self, id: int) -> CommitComment: ...
def get_comments(self) -> PaginatedList[CommitComment]: ...
def get_commit(self, sha: str) -> Commit: ...
def get_commits(
self,
sha: Union[str, _NotSetType] = ...,
path: Union[str, _NotSetType] = ...,
since: Union[_NotSetType, datetime] = ...,
until: Union[_NotSetType, datetime] = ...,
author: Union[AuthenticatedUser, NamedUser, str, _NotSetType] = ...,
) -> PaginatedList[Commit]: ...
def get_contents(
self, path: str, ref: Union[str, _NotSetType] = ...
) -> Union[List[ContentFile], ContentFile]: ...
def get_contributors(
self, anon: Union[str, _NotSetType] = ...
) -> PaginatedList[NamedUser]: ...
def get_deployment(self, id_: int) -> Deployment: ...
def get_deployments(
self,
sha: Union[str, _NotSetType] = ...,
ref: Union[str, _NotSetType] = ...,
task: Union[str, _NotSetType] = ...,
environment: Union[str, _NotSetType] = ...,
) -> PaginatedList[Deployment]: ...
def get_dir_contents(
self, path: str, ref: Union[str, _NotSetType] = ...
) -> List[ContentFile]: ...
def get_download(self, id: int) -> Download: ...
def get_downloads(self) -> PaginatedList[Download]: ...
def get_events(self) -> PaginatedList[Event]: ...
def get_forks(self) -> PaginatedList[Repository]: ...
def create_fork(
self, organization: Union[str, _NotSetType] = ...
) -> Repository: ...
def get_git_blob(self, sha: str) -> GitBlob: ...
def get_git_commit(self, sha: str) -> GitCommit: ...
def get_git_matching_refs(self, ref: str) -> PaginatedList[GitRef]: ...
def get_git_ref(self, ref: str) -> GitRef: ...
def get_git_refs(self) -> PaginatedList[GitRef]: ...
def get_git_tag(self, sha: str) -> GitTag: ...
def get_git_tree(
self, sha: str, recursive: Union[bool, _NotSetType] = ...
) -> GitTree: ...
def get_hook(self, id: int) -> Hook: ...
def get_hooks(self) -> PaginatedList[Hook]: ...
def get_issue(self, number: int) -> Issue: ...
def get_issues(
self,
milestone: Union[Milestone, str, _NotSetType] = ...,
state: Union[str, _NotSetType] = ...,
assignee: Union[NamedUser, str, _NotSetType] = ...,
mentioned: Union[_NotSetType, NamedUser] = ...,
labels: Union[List[str], List[Label], _NotSetType] = ...,
sort: Union[str, _NotSetType] = ...,
direction: Union[str, _NotSetType] = ...,
since: Union[_NotSetType, datetime] = ...,
creator: Union[NamedUser, _NotSetType] = ...,
) -> PaginatedList[Issue]: ...
def get_issues_comments(
self,
sort: Union[str, _NotSetType] = ...,
direction: Union[str, _NotSetType] = ...,
since: Union[_NotSetType, datetime] = ...,
) -> PaginatedList[IssueComment]: ...
def get_issues_event(self, id: int) -> IssueEvent: ...
def get_issues_events(self) -> PaginatedList[IssueEvent]: ...
def get_key(self, id: int) -> RepositoryKey: ...
def get_keys(self) -> PaginatedList[RepositoryKey]: ...
def get_label(self, name: str) -> Label: ...
def get_labels(self) -> PaginatedList[Label]: ...
def get_languages(self) -> Dict[str, int]: ...
def get_latest_release(self) -> GitRelease: ...
def get_license(self) -> ContentFile: ...
def get_milestone(self, number: int) -> Milestone: ...
def get_milestones(
self,
state: Union[str, _NotSetType] = ...,
sort: Union[str, _NotSetType] = ...,
direction: Union[str, _NotSetType] = ...,
) -> PaginatedList[Milestone]: ...
def get_network_events(self) -> PaginatedList[Event]: ...
def get_notifications(
self,
all: Union[bool, _NotSetType] = ...,
participating: Union[bool, _NotSetType] = ...,
since: Union[datetime, _NotSetType] = ...,
before: Union[datetime, _NotSetType] = ...,
) -> PaginatedList[Notification]: ...
def get_pending_invitations(self) -> PaginatedList[Invitation]: ...
def get_projects(
self, state: Union[str, _NotSetType] = ...
) -> PaginatedList[Project]: ...
def get_public_key(self) -> PublicKey: ...
def get_pull(self, number: int) -> PullRequest: ...
def get_pulls(
self,
state: Union[str, _NotSetType] = ...,
sort: Union[str, _NotSetType] = ...,
direction: Union[str, _NotSetType] = ...,
base: Union[str, _NotSetType] = ...,
head: Union[str, _NotSetType] = ...,
) -> PaginatedList[PullRequest]: ...
def get_pulls_comments(
self,
sort: Union[str, _NotSetType] = ...,
direction: Union[str, _NotSetType] = ...,
since: Union[_NotSetType, datetime] = ...,
) -> PaginatedList[PullRequestComment]: ...
def get_pulls_review_comments(
self,
sort: Union[str, _NotSetType] = ...,
direction: Union[str, _NotSetType] = ...,
since: Union[_NotSetType, datetime] = ...,
) -> PaginatedList[PullRequestComment]: ...
def get_readme(self, ref: Union[str, _NotSetType] = ...) -> ContentFile: ...
def get_release(self, id: Union[int, str]) -> GitRelease: ...
def get_release_asset(self, id: int) -> GitReleaseAsset: ...
def get_releases(self) -> PaginatedList[GitRelease]: ...
def get_self_hosted_runner(self, runner_id: int) -> SelfHostedActionsRunner: ...
def get_self_hosted_runners(self) -> PaginatedList[SelfHostedActionsRunner]: ...
def get_source_import(self) -> SourceImport: ...
def get_stargazers(self) -> PaginatedList[NamedUser]: ...
def get_stargazers_with_dates(self) -> PaginatedList[Stargazer]: ...
def get_stats_code_frequency(self) -> Optional[List[StatsCodeFrequency]]: ...
def get_stats_commit_activity(self) -> Optional[List[StatsCommitActivity]]: ...
def get_stats_contributors(self) -> Optional[List[StatsContributor]]: ...
def get_stats_participation(self) -> Optional[StatsParticipation]: ...
def get_stats_punch_card(self) -> Optional[StatsPunchCard]: ...
def get_subscribers(self) -> PaginatedList[NamedUser]: ...
def get_tags(self) -> PaginatedList[Tag]: ...
def get_teams(self) -> PaginatedList[Team]: ...
def get_top_paths(self) -> List[Path]: ...
def get_top_referrers(self) -> List[Referrer]: ...
def get_topics(self) -> List[str]: ...
def get_views_traffic(
self, per: Union[str, _NotSetType] = ...
) -> Dict[str, Union[int, List[View]]]: ...
def get_vulnerability_alert(self) -> bool: ...
def get_watchers(self) -> PaginatedList[NamedUser]: ...
def get_workflow(self, id_or_name: Union[str, int]) -> Workflow: ...
def get_workflows(self) -> PaginatedList[Workflow]: ...
def get_workflow_run(self, id_: int) -> WorkflowRun: ...
def get_workflow_runs(self) -> PaginatedList[WorkflowRun]: ...
def update_check_suites_preferences(
self, auto_trigger_checks: List[Dict[str, Union[bool, int]]]
) -> RepositoryPreferences: ...
@property
def git_commits_url(self) -> str: ...
@property
def git_refs_url(self) -> str: ...
@property
def git_tags_url(self) -> str: ...
@property
def git_url(self) -> str: ...
@property
def has_downloads(self) -> bool: ...
def has_in_assignees(self, assignee: Union[str, NamedUser]) -> bool: ...
def has_in_collaborators(self, collaborator: Union[str, NamedUser]) -> bool: ...
@property
def has_issues(self) -> bool: ...
@property
def has_pages(self) -> bool: ...
@property
def has_projects(self) -> bool: ...
@property
def has_wiki(self) -> bool: ...
@property
def homepage(self) -> str: ...
@property
def hooks_url(self) -> str: ...
@property
def html_url(self) -> str: ...
@property
def id(self) -> int: ...
@property
def issue_comment_url(self) -> str: ...
@property
def issue_events_url(self) -> str: ...
@property
def issues_url(self) -> str: ...
@property
def keys_url(self) -> str: ...
@property
def labels_url(self) -> str: ...
@property
def language(self) -> str: ...
@property
def languages_url(self) -> str: ...
def legacy_search_issues(self, state: str, keyword: str) -> List[Issue]: ...
def mark_notifications_as_read(self, last_read_at: datetime = ...) -> None: ...
@property
def master_branch(self) -> Optional[str]: ...
def merge(
self, base: str, head: str, commit_message: Union[str, _NotSetType] = ...
) -> Optional[Commit]: ...
@property
def merges_url(self) -> str: ...
@property
def milestones_url(self) -> str: ...
@property
def mirror_url(self) -> str: ...
@property
def name(self) -> str: ...
@property
def network_count(self) -> int: ...
@property
def notifications_url(self) -> str: ...
@property
def open_issues(self) -> int: ...
@property
def open_issues_count(self) -> int: ...
@property
def organization(self) -> Organization: ...
@property
def owner(self) -> NamedUser: ...
@property
def parent(self) -> Repository: ...
@property
def permissions(self) -> Permissions: ...
@property
def private(self) -> bool: ...
@property
def pulls_url(self) -> str: ...
@property
def pushed_at(self) -> datetime: ...
@property
def releases_url(self) -> str: ...
def remove_from_collaborators(
self, collaborator: Union[str, NamedUser]
) -> None: ...
def remove_self_hosted_runner(
self, runner: Union[SelfHostedActionsRunner, int]
) -> bool: ...
def remove_invitation(self, invite_id: int) -> None: ...
def replace_topics(self, topics: List[str]) -> None: ...
@property
def size(self) -> int: ...
@property
def source(self) -> Optional[Repository]: ...
@property
def ssh_url(self) -> str: ...
@property
def stargazers_count(self) -> int: ...
@property
def stargazers_url(self) -> str: ...
@property
def statuses_url(self) -> str: ...
def subscribe_to_hub(
self, event: str, callback: str, secret: Union[str, _NotSetType] = ...
) -> None: ...
@property
def subscribers_count(self) -> int: ...
@property
def subscribers_url(self) -> str: ...
@property
def subscription_url(self) -> str: ...
@property
def svn_url(self) -> str: ...
@property
def tags_url(self) -> str: ...
@property
def teams_url(self) -> str: ...
@property
def trees_url(self) -> str: ...
def unsubscribe_from_hub(self, event: str, callback: str) -> None: ...
def update_file(
self,
path: str,
message: str,
content: Union[bytes, str],
sha: str,
branch: Union[_NotSetType, str] = ...,
committer: Union[_NotSetType, InputGitAuthor] = ...,
author: Union[_NotSetType, InputGitAuthor] = ...,
) -> Dict[str, Union[ContentFile, Commit]]: ...
@property
def updated_at(self) -> datetime: ...
@property
def url(self) -> str: ...
@property
def watchers(self) -> int: ...
@property
def watchers_count(self) -> int: ...
|