From daccf01b8c406704d088a621a6b18f567bcba673 Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Mon, 23 Sep 2024 18:48:44 +0200 Subject: [PATCH] read_file_dict --- rwx/fs/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rwx/fs/__init__.py b/rwx/fs/__init__.py index 184c198..46a26e6 100644 --- a/rwx/fs/__init__.py +++ b/rwx/fs/__init__.py @@ -107,14 +107,14 @@ def read_file_lines(file_path: Path, charset: str = CHARSET) -> list[str]: return read_file_text(file_path, charset).split(os.linesep) -def read_file_object(file_path: Path, charset: str = CHARSET) -> object: +def read_file_dict(file_path: Path, charset: str = CHARSET) -> dict: """Read whole file as toml object. :param file_path: source input file :type file_path: Path :param charset: charset to use for decoding input :type charset: str - :rtype: object + :rtype: dict """ text = read_file_text(file_path, charset) return tomllib.loads(text)