From 545e53d1f7906962395a37dba6a112f5298a6208 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Thu, 26 Mar 2020 19:08:58 -0700 Subject: [PATCH] action test --- tools/efrotools/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/efrotools/__init__.py b/tools/efrotools/__init__.py index aaf0730a..7262e580 100644 --- a/tools/efrotools/__init__.py +++ b/tools/efrotools/__init__.py @@ -29,6 +29,7 @@ from __future__ import annotations import os import json import subprocess +import platform from pathlib import Path from typing import TYPE_CHECKING @@ -37,7 +38,7 @@ if TYPE_CHECKING: from typing_extensions import Literal # Python binary assumed by these tools. -PYTHON_BIN = 'python3.7' +PYTHON_BIN = 'python3.7' if platform.system() != 'Windows' else 'python' MIT_LICENSE = """Copyright (c) 2011-2020 Eric Froemling