Reformat file with black

This commit is contained in:
deajan 2024-09-15 19:50:35 +02:00
parent 50864be739
commit 6149404a1f

View file

@ -194,7 +194,9 @@ def _make_treedata_from_json(ls_result: List[dict]) -> sg.TreeData:
treedata = sg.TreeData()
count = 0
if not MSGSPEC:
logger.info("Using basic json representation for data which is slow and memory hungry. Consider using a newer OS that supports Python 3.8+")
logger.info(
"Using basic json representation for data which is slow and memory hungry. Consider using a newer OS that supports Python 3.8+"
)
for entry in ls_result:
# Make sure we drop the prefix '/' so sg.TreeData does not get an empty root
if MSGSPEC: