From c4047f76302d70446d9c6a9b787d1dae19f0e8da Mon Sep 17 00:00:00 2001 From: sneakers-the-rat Date: Wed, 30 Oct 2024 16:36:52 -0700 Subject: [PATCH] lint --- tests/test_template_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_template_init.py b/tests/test_template_init.py index b2889b1..16fa9a0 100644 --- a/tests/test_template_init.py +++ b/tests/test_template_init.py @@ -207,11 +207,11 @@ def test_dev_platform_github(generated: Callable[..., Path]): """Test github stuff idk!.""" project = generated(use_git=True, dev_platform="GitHub") - workflows_dir = project / '.github' / 'workflows' + workflows_dir = project / ".github" / "workflows" assert workflows_dir.exists() workflows = list(workflows_dir.iterdir()) assert len(workflows) > 0 - assert all(workflow.suffix in ('.yml', '.yaml') for workflow in workflows) + assert all(workflow.suffix in (".yml", ".yaml") for workflow in workflows) subprocess.run( "pre-commit run --all-files -v check-github-workflows",