From 51cc1eb81fc32e0499353c09b7e2291741fd7a26 Mon Sep 17 00:00:00 2001 From: "Schimon Jehudah, Adv." Date: Mon, 16 Dec 2024 14:47:17 +0200 Subject: [PATCH] Fix import of bookmarks from TOML file. --- blasta/http/instance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blasta/http/instance.py b/blasta/http/instance.py index b6f5b5b..3267485 100644 --- a/blasta/http/instance.py +++ b/blasta/http/instance.py @@ -1367,7 +1367,7 @@ class HttpInstance: # TODO Add match/case for filetype. - entries = tomllib.loads(content) + entries = UtilitiesData.open_file_toml(content) # entries_node = entries[node] #breakpoint()