From 99e00a2894f1fe4b8cec2c18cb2a73ca7872610b Mon Sep 17 00:00:00 2001 From: mickeydarrenlau Date: Tue, 12 Oct 2021 13:06:54 +0800 Subject: [PATCH] Fix install command example (#2043) It should be pip install PyGithub[integrations] not pip install PyGithub['integrations'] --- doc/introduction.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/introduction.rst b/doc/introduction.rst index 3fdb1a007c..ee4062cfec 100644 --- a/doc/introduction.rst +++ b/doc/introduction.rst @@ -38,7 +38,7 @@ be enough. You can also clone it on `Github `__. If you wish to use GitHub Integrations, you'll want to be sure to install the -'integrations' option: ``pip install PyGithub['integrations']`` +'integrations' option: ``pip install PyGithub[integrations]`` Licensing ---------