From e0b7ef2039ded399056af7f2ab24f092e2e1cfb9 Mon Sep 17 00:00:00 2001 From: gsheni Date: Mon, 25 Mar 2024 15:03:58 -0400 Subject: [PATCH] fix quotes --- pyproject.toml | 2 -- tasks.py | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index ef2750f..df1502c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -181,8 +181,6 @@ ignore = [ "E501", "D107", # Missing docstring in __init__ "D417", # Missing argument descriptions in the docstring, this is a bug from pydocstyle: https://github.com/PyCQA/pydocstyle/issues/449 - "Q000", # Remove quotes - "Q003", # Remove quotes ] [tool.ruff.lint.pep8-naming] diff --git a/tasks.py b/tasks.py index 4362402..9c33b12 100644 --- a/tasks.py +++ b/tasks.py @@ -97,7 +97,8 @@ def install_minimum(c): minimum_versions = _get_minimum_versions(dependencies, python_version) if minimum_versions: - c.run(f'python -m pip install {' '.join(minimum_versions)}') + install_deps = ' '.join(minimum_versions) + c.run(f'python -m pip install {install_deps}') @task