Skip to content

Commit

Permalink
Display proper env conf
Browse files Browse the repository at this point in the history
  • Loading branch information
olethanh committed Oct 22, 2024
1 parent a845ba5 commit 32b66a5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 10 deletions.
2 changes: 1 addition & 1 deletion src/aleph/vm/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,7 @@ def display(self) -> str:
else:
attributes[attr] = getattr(self, attr)

return "\n".join(f"{attribute:<27} = {value}" for attribute, value in attributes.items())
return "\n".join(f"{self.Config.env_prefix}{attribute} = {value}" for attribute, value in attributes.items())

def __init__(
self,
Expand Down
9 changes: 0 additions & 9 deletions src/aleph/vm/orchestrator/vm/__init__.py

This file was deleted.

0 comments on commit 32b66a5

Please sign in to comment.