tools: Fixed a broken dependency for pydocstyle.

This commit is contained in:
Andrew Hamilton 2018-05-31 14:46:49 +10:00
parent a320992b87
commit 367385157d

View file

@ -383,7 +383,7 @@ def pycodestyle(path):
return _run_command([_python_version(path), "-m", "pycodestyle", path]) return _run_command([_python_version(path), "-m", "pycodestyle", path])
@deps(deps={"python-pydocstyle", "python3-pydocstyle"}, @deps(deps={"pydocstyle", "python3-pydocstyle"},
url="python3-pydocstyle") url="python3-pydocstyle")
def pydocstyle(path): def pydocstyle(path):
return _run_command([_python_version(path), "-m", "pydocstyle", path]) return _run_command([_python_version(path), "-m", "pydocstyle", path])