diff options
author | Harmen Stoppels <me@harmenstoppels.nl> | 2024-07-15 21:55:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-15 21:55:11 +0200 |
commit | d4e6c29f2518c491614eb836a9578d5de0690255 (patch) | |
tree | 01cf64ea04e83f6be0b9ca2af0fabb348ad7c789 /lib | |
parent | c12772e73f80f18a3a95815db277972849e5029d (diff) | |
download | spack-d4e6c29f2518c491614eb836a9578d5de0690255.tar.gz spack-d4e6c29f2518c491614eb836a9578d5de0690255.tar.bz2 spack-d4e6c29f2518c491614eb836a9578d5de0690255.tar.xz spack-d4e6c29f2518c491614eb836a9578d5de0690255.zip |
unparser.py: remove print statements (#45235)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/util/unparse/unparser.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/spack/spack/util/unparse/unparser.py b/lib/spack/spack/util/unparse/unparser.py index 8ca4cd57a3..13da43aa98 100644 --- a/lib/spack/spack/util/unparse/unparser.py +++ b/lib/spack/spack/util/unparse/unparser.py @@ -554,9 +554,7 @@ class Unparser: def _fstring_JoinedStr(self, node, write): for value in node.values: - print(" ", value) meth = getattr(self, "_fstring_" + type(value).__name__) - print(meth) meth(value, write) def _fstring_Str(self, node, write): |