From ec35094684868c857c845fee078803b12c232478 Mon Sep 17 00:00:00 2001 From: Axel Theorell Date: Wed, 13 Dec 2023 14:29:47 +0100 Subject: [PATCH] ruff formatting --- gpt_engineer/applications/cli/main.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gpt_engineer/applications/cli/main.py b/gpt_engineer/applications/cli/main.py index 46400ed873..f0c10235bd 100644 --- a/gpt_engineer/applications/cli/main.py +++ b/gpt_engineer/applications/cli/main.py @@ -28,11 +28,13 @@ import logging import os -from pathlib import Path from importlib.util import find_spec +from pathlib import Path + import openai -import typer import toml +import typer + from dotenv import load_dotenv from gpt_engineer.applications.cli.cli_agent import CliAgent @@ -47,7 +49,6 @@ from gpt_engineer.core.preprompts_holder import PrepromptsHolder from gpt_engineer.tools.custom_steps import clarified_gen, lite_gen, self_heal - # Load the names of the optional dependencies from the pyprojecct file and determine whether # they can be imported with open("pyproject.toml", "r") as file: