diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2022-07-30 15:19:18 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2022-07-31 13:29:20 -0700 |
commit | f52f6e99dbf1131886a80112b8c79dfc414afb7c (patch) | |
tree | 05cb7d64b2395922f2f24683da49f472075be12c /var/spack/repos/builtin/packages/py-pydocstyle/package.py | |
parent | 549ba1ed32372c67fc57271cde3797d58b7dec6e (diff) | |
download | spack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.tar.gz spack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.tar.bz2 spack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.tar.xz spack-f52f6e99dbf1131886a80112b8c79dfc414afb7c.zip |
black: reformat entire repository with black
Diffstat (limited to 'var/spack/repos/builtin/packages/py-pydocstyle/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pydocstyle/package.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/var/spack/repos/builtin/packages/py-pydocstyle/package.py b/var/spack/repos/builtin/packages/py-pydocstyle/package.py index 7fa31efe94..3db3867edf 100644 --- a/var/spack/repos/builtin/packages/py-pydocstyle/package.py +++ b/var/spack/repos/builtin/packages/py-pydocstyle/package.py @@ -10,13 +10,13 @@ class PyPydocstyle(PythonPackage): """Python docstring style checker.""" homepage = "https://github.com/PyCQA/pydocstyle/" - pypi = "pydocstyle/pydocstyle-6.1.1.tar.gz" + pypi = "pydocstyle/pydocstyle-6.1.1.tar.gz" - version('6.1.1', sha256='1d41b7c459ba0ee6c345f2eb9ae827cab14a7533a88c5c6f7e94923f72df92dc') + version("6.1.1", sha256="1d41b7c459ba0ee6c345f2eb9ae827cab14a7533a88c5c6f7e94923f72df92dc") - variant('toml', default=True, description='Allow pydocstyle to read pyproject.toml') + variant("toml", default=True, description="Allow pydocstyle to read pyproject.toml") - depends_on('python@3.6:', type=('build', 'run')) - depends_on('py-setuptools', type=('build', 'run')) - depends_on('py-snowballstemmer', type=('build', 'run')) - depends_on('py-toml', when='+toml', type=('build', 'run')) + depends_on("python@3.6:", type=("build", "run")) + depends_on("py-setuptools", type=("build", "run")) + depends_on("py-snowballstemmer", type=("build", "run")) + depends_on("py-toml", when="+toml", type=("build", "run")) |