From 662d48f5227ef1adee050bdb9269bb003cad3b9b Mon Sep 17 00:00:00 2001 From: Timo Pagel Date: Tue, 19 Mar 2024 15:19:14 +0100 Subject: [PATCH 1/2] chore: fix docs --- doc/examples/Authentication.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/examples/Authentication.rst b/doc/examples/Authentication.rst index 1e22e32de7..6566358ad5 100644 --- a/doc/examples/Authentication.rst +++ b/doc/examples/Authentication.rst @@ -9,6 +9,8 @@ All authentication methods require this import: .. code-block:: python >>> from github import Auth + >>> from github import Github + Login authentication -------------------- From 4dcc973e46310212e352ce0cee993ff26c34d5f8 Mon Sep 17 00:00:00 2001 From: Enrico Minack Date: Thu, 21 Mar 2024 11:43:13 +0100 Subject: [PATCH 2/2] Add GithubIntegration import to doc/examples/Authentication.rst --- doc/examples/Authentication.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/Authentication.rst b/doc/examples/Authentication.rst index 6566358ad5..74e37c479e 100644 --- a/doc/examples/Authentication.rst +++ b/doc/examples/Authentication.rst @@ -10,7 +10,7 @@ All authentication methods require this import: >>> from github import Auth >>> from github import Github - + >>> from github import GithubIntegration Login authentication --------------------