diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index bd447d6d..43f4f1bf 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -1,4 +1,4 @@ -#!/bin/env python +#!/bin/env python3 from subprocess import run # Update pre commit hooks diff --git a/hooks/pre_gen_project.py b/hooks/pre_gen_project.py index 46502457..74414edc 100644 --- a/hooks/pre_gen_project.py +++ b/hooks/pre_gen_project.py @@ -1,4 +1,4 @@ -#!/bin/env python +#!/bin/env python3 from subprocess import run run("git init --initial-branch=main .".split(), check=True)