Skip to content

Commit

Permalink
Style
Browse files Browse the repository at this point in the history
  • Loading branch information
psakievich committed Jul 19, 2024
1 parent a5ef06a commit 16c9bcf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manager/environment_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@

import spack.environment.environment as senv


# TODO spack version dependent code
class SpackManagerEnvironmentManifest(senv.EnvironmentManifestFile):
"""Spack-Manager extension to the manifest file for prototyping"""

def version_compatible_config_generator(self):
""" generator to deal with all the ways to get the in memory configs across versions"""
"""generator to deal with all the ways to get the in memory configs across versions"""
for attr in ["yaml_content", "pristine_yaml_content"]:
if hasattr(self, attr):
yaml = getattr(self, attr)
Expand Down

0 comments on commit 16c9bcf

Please sign in to comment.