mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 19:01:15 +00:00
Deployment, TimelineEvent{,Source} were missing mypy stubs, since they
were added after the mypy branch was started. Add them, and clean up two
spurious __future__ imports that are no longer required. Add mypy's
cache directory to .gitignore
13 lines
330 B
Python
13 lines
330 B
Python
from typing import Any, Dict
|
|
|
|
from github.Issue import Issue
|
|
|
|
class TimelineEventSource:
|
|
def __repr__(self) -> str: ...
|
|
def _initAttributes(self) -> None: ...
|
|
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...
|
|
@property
|
|
def type(self) -> str: ...
|
|
@property
|
|
def issue(self) -> Issue: ...
|