From 3ca649b38753d1922c9d512dc020ae541f01ba0a Mon Sep 17 00:00:00 2001 From: Samuel Vasko Date: Sun, 5 Mar 2017 21:10:35 +0000 Subject: [PATCH] Updated _dict description --- toml.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toml.py b/toml.py index d148fb8..ace940e 100644 --- a/toml.py +++ b/toml.py @@ -39,7 +39,7 @@ def load(f, _dict=dict): Args: f: Path to the file to open, array of files to read into single dict or a file descriptor - _dict: Optional dictionary that will be merged with parsed toml + _dict: (optional) Specifies the class of the returned toml dictionary Returns: Parsed toml file represented as a dictionary @@ -73,7 +73,7 @@ def loads(s, _dict=dict): Args: s: String to be parsed - _dict: Optional dictionary that will be merged with parsed toml + _dict: (optional) Specifies the class of the returned toml dictionary Returns: Parsed toml file represented as a dictionary