Skip to content

Commit

Permalink
Fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
rusiaaman committed Jan 23, 2025
1 parent c0fd42f commit 6efecab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/wcgw_cli/cli.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import importlib
from typing import Optional
from typer import Typer
import typer

from src.wcgw_cli.openai_client import loop as openai_loop
from src.wcgw_cli.anthropic_client import loop as claude_loop
import typer
from typer import Typer

from wcgw_cli.anthropic_client import loop as claude_loop
from wcgw_cli.openai_client import loop as openai_loop

app = Typer(pretty_exceptions_show_locals=False)

Expand Down

0 comments on commit 6efecab

Please sign in to comment.