Skip to content

Commit

Permalink
fix quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
gsheni committed Mar 25, 2024
1 parent 797d9b6 commit e0b7ef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
3 changes: 2 additions & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e0b7ef2

Please sign in to comment.