From 1d929f5fb3047200baef3082156a971874a057dc Mon Sep 17 00:00:00 2001 From: hygienic-books Date: Tue, 5 Jul 2022 19:36:33 +0200 Subject: [PATCH] refactor(build): Double quotes instead of single quotes --- .../{{ cookiecutter.__project_slug }}.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-naive/{{ cookiecutter.__project_slug }}/{{ cookiecutter.__project_slug }}.py b/python-naive/{{ cookiecutter.__project_slug }}/{{ cookiecutter.__project_slug }}.py index 8fcddb5..be3f31a 100644 --- a/python-naive/{{ cookiecutter.__project_slug }}/{{ cookiecutter.__project_slug }}.py +++ b/python-naive/{{ cookiecutter.__project_slug }}/{{ cookiecutter.__project_slug }}.py @@ -243,7 +243,7 @@ def an_important_function( return ["I", "am", "a", "list"] -if __name__ == '__main__': +if __name__ == "__main__": {% if cookiecutter.use_config_ini == "yes" -%} validate_default_section(config) if config_has_valid_section(config):