From 1e1e2929262056925d62c08e836d05b77c1e0381 Mon Sep 17 00:00:00 2001 From: Phil Schaf Date: Tue, 28 Nov 2023 14:15:32 +0000 Subject: [PATCH] python3 --- hooks/post_gen_project.py | 2 +- hooks/pre_gen_project.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)