Skip to content

Commit

Permalink
fix dict printing
Browse files Browse the repository at this point in the history
Signed-off-by: Zen <[email protected]>
  • Loading branch information
desultory committed Aug 21, 2024
1 parent 6c7c9e2 commit e4bb6e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ugrd/initramfs_dict.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = "desultory"
__version__ = "2.0.2"
__version__ = "2.0.3"

from tomllib import load, TOMLDecodeError
from pathlib import Path
Expand Down Expand Up @@ -284,4 +284,4 @@ def validate(self) -> None:
self['validated'] = True

def __str__(self) -> str:
return pretty_print(self)
return pretty_print(self.data)

0 comments on commit e4bb6e6

Please sign in to comment.