Files
PyGithub/github/TimelineEventSource.pyi
T
Steve Kowalik 393bd21bd1 Add missing mypy stubs (#1443)
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
2020-03-28 21:45:04 +11:00

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: ...