@@ -66,7 +66,7 @@ def main(initialise_git_repository: str, deploy_docs_to_github_pages: str) -> in
6666 '-d "{{cookiecutter.project_short_description}}" '
6767 "--public "
6868 "-r origin "
69- "--source {{cookiecutter.project_slug}}\n "
69+ "--source {{cookiecutter.project_slug}}\n " ,
7070 )
7171 except FileNotFoundError :
7272 # GitHub CLI isn't installed
@@ -78,7 +78,7 @@ def main(initialise_git_repository: str, deploy_docs_to_github_pages: str) -> in
7878 "https://docs.github.com/en/get-started/quickstart/create-a-repo.\n \n "
7979 "Then run:\n \n "
8080 "git remote add origin [email protected] :" 81- "{{cookiecutter.__repo_name}}.git\n "
81+ "{{cookiecutter.__repo_name}}.git\n " ,
8282 )
8383 except subprocess .CalledProcessError as e :
8484 # some other error
@@ -98,7 +98,7 @@ def main(initialise_git_repository: str, deploy_docs_to_github_pages: str) -> in
9898 "{{cookiecutter.__repo_url}}/settings/pages\n \n "
9999 "and under 'Built and deployment' selecting 'Deploy from a branch' for "
100100 "the 'Source' drop-down and 'gh-pages' for the 'Branch' drop-down, "
101- "leaving the branch path drop-down with its default value of '/ (root)'."
101+ "leaving the branch path drop-down with its default value of '/ (root)'." ,
102102 )
103103
104104 return _EXIT_SUCCESS
@@ -109,5 +109,5 @@ def main(initialise_git_repository: str, deploy_docs_to_github_pages: str) -> in
109109 main (
110110 "{{ cookiecutter.initialise_git_repository }}" ,
111111 "{{ cookiecutter.deploy_docs_to_github_pages }}" ,
112- )
112+ ),
113113 )
0 commit comments