summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin.mock/packages/dependent-of-dev-build/package.py
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2022-07-30 15:19:18 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2022-07-31 13:29:20 -0700
commitf52f6e99dbf1131886a80112b8c79dfc414afb7c (patch)
tree05cb7d64b2395922f2f24683da49f472075be12c /var/spack/repos/builtin.mock/packages/dependent-of-dev-build/package.py
parent549ba1ed32372c67fc57271cde3797d58b7dec6e (diff)
downloadspack-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.mock/packages/dependent-of-dev-build/package.py')
-rw-r--r--var/spack/repos/builtin.mock/packages/dependent-of-dev-build/package.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/var/spack/repos/builtin.mock/packages/dependent-of-dev-build/package.py b/var/spack/repos/builtin.mock/packages/dependent-of-dev-build/package.py
index 4706d439b8..35c9a1a708 100644
--- a/var/spack/repos/builtin.mock/packages/dependent-of-dev-build/package.py
+++ b/var/spack/repos/builtin.mock/packages/dependent-of-dev-build/package.py
@@ -11,10 +11,10 @@ class DependentOfDevBuild(Package):
homepage = "example.com"
url = "fake.com"
- version('0.0.0', sha256='0123456789abcdef0123456789abcdef')
+ version("0.0.0", sha256="0123456789abcdef0123456789abcdef")
- depends_on('dev-build-test-install')
+ depends_on("dev-build-test-install")
def install(self, spec, prefix):
- with open(prefix.filename, 'w') as f:
+ with open(prefix.filename, "w") as f:
f.write("This file is installed")