Skip to content

Commit 2b4d71b

Browse files
committed
formatted
1 parent d02c668 commit 2b4d71b

File tree

1 file changed

+6
-3
lines changed
  • src/ontobot_change_agent

1 file changed

+6
-3
lines changed

src/ontobot_change_agent/cli.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
import os
88
import re
99
from typing import TextIO, Union
10-
from llm_change_agent.cli import execute
10+
1111
import click
12+
from llm_change_agent.cli import execute
1213

1314
from ontobot_change_agent import __version__
1415
from ontobot_change_agent.api import (
@@ -236,8 +237,10 @@ def process_issue(
236237
ctx.params["provider"] = "cborg"
237238
ctx.params["model"] = "google/gemini:latest"
238239
response = execute.invoke(ctx)
239-
KGCL_COMMANDS = [command.replace('"',"'") for command in ast.literal_eval(response)]
240-
240+
KGCL_COMMANDS = [
241+
command.replace('"', "'") for command in ast.literal_eval(response)
242+
]
243+
241244
if len(KGCL_COMMANDS) > 0:
242245
click.echo(f"llm-change-agent result: {response}")
243246
formatted_body = "The following commands were executed: </br> "

0 commit comments

Comments
 (0)