Fix isort?

This commit is contained in:
BillSchumacher
2023-04-18 19:07:39 -05:00
parent 221a4b0b50
commit 3f2d14f4d8
8 changed files with 42 additions and 18 deletions

View File

@@ -9,7 +9,9 @@ CFG = Config()
def fix_json_using_multiple_techniques(assistant_reply: str) -> Dict[Any, Any]:
from autogpt.json_fixes.parsing import (
attempt_to_fix_json_by_finding_outermost_brackets, fix_and_parse_json)
attempt_to_fix_json_by_finding_outermost_brackets,
fix_and_parse_json,
)
# Parse and print Assistant response
assistant_reply_json = fix_and_parse_json(assistant_reply)