Skip to content

Commit

Permalink
style: black
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonyjin committed Nov 19, 2024
1 parent 0232124 commit a88bcf1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/aleph/vm/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,9 @@ def display(self) -> str:
else:
attributes[attr] = getattr(self, attr)

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

Check warning on line 471 in src/aleph/vm/conf.py

View check run for this annotation

Codecov / codecov/patch

src/aleph/vm/conf.py#L471

Added line #L471 was not covered by tests
f"{self.model_config.env_prefix}{attribute} = {value}" for attribute, value in attributes.items()
)

def __init__(
self,
Expand Down

0 comments on commit a88bcf1

Please sign in to comment.