From 024c709ea85161aea4830f602328083d5c24b7f8 Mon Sep 17 00:00:00 2001 From: Michael Flanigan <7891356+mjfii@users.noreply.github.com> Date: Fri, 9 Feb 2024 14:12:48 -0700 Subject: [PATCH] [UPDATE] removed double quotes from workflow python --- .github/workflows/version-deployment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version-deployment.yml b/.github/workflows/version-deployment.yml index 8e51eb2..546ba1a 100644 --- a/.github/workflows/version-deployment.yml +++ b/.github/workflows/version-deployment.yml @@ -42,7 +42,7 @@ jobs: with open('pyproject.toml', 'w') as f: toml.dump(config, f) - print(f"Project Version updated to {_ver} in pyproject.toml file.") + print(f'Project Version updated to {_ver} in pyproject.toml file.') """ - name: Build package run: python -m build