Skip to content

Commit

Permalink
formatted
Browse files Browse the repository at this point in the history
  • Loading branch information
hrshdhgd committed Jul 24, 2024
1 parent b9ba755 commit bc8d59c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kg_chat/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def import_kg(database: str = "duckdb", data_dir: str = None):
@main.command()
@data_dir_option
@database_options
def test_query(data_dir:Union[str, Path], database: str = "duckdb"):
def test_query(data_dir: Union[str, Path], database: str = "duckdb"):
"""Run the kg-chat's chat command."""
if database == "neo4j":
impl = Neo4jImplementation(data_dir=data_dir)
Expand Down Expand Up @@ -111,7 +111,7 @@ def show_schema(data_dir: Union[str, Path], database: str = "duckdb"):
@database_options
@click.argument("query", type=str, required=True)
@data_dir_option
def qna(query: str, data_dir:Union[str, Path], database: str = "duckdb"):
def qna(query: str, data_dir: Union[str, Path], database: str = "duckdb"):
"""Run the kg-chat's chat command."""
if database == "neo4j":
impl = Neo4jImplementation(data_dir=data_dir)
Expand Down

0 comments on commit bc8d59c

Please sign in to comment.