Correct Workflow typing (#1533)

When Workflow support was added, the method calls were not added to
the typing file for Repository, and somehow the class name for the
Workflow typing file was incorrect.
This commit is contained in:
Steve Kowalik
2020-05-23 16:04:06 +10:00
committed by GitHub
parent 7abf600480
commit f41c046f0e
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ from typing import Any, Dict
from github.GithubObject import CompletableGithubObject
class Deployment(CompletableGithubObject):
class Workflow(CompletableGithubObject):
def __repr__(self) -> str: ...
def _initAttributes(self) -> None: ...
def _useAttributes(self, attributes: Dict[str, Any]) -> None: ...