Skip to content

Commit

Permalink
Refactor import statements
Browse files Browse the repository at this point in the history
  • Loading branch information
shankarpandala committed Nov 19, 2023
1 parent 151ff5f commit 3a32fec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lazygitgpt/__main__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from lazygitgpt.lazygitgpt.cli import main
from lazygitgpt.cli import main

main()
4 changes: 2 additions & 2 deletions lazygitgpt/cli.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/env python3

import click
from lazygitgpt.lazygitgpt.git_operations import clone_repository, checkout_branch
from lazygitgpt.lazygitgpt.ai_operations import generate_response
from lazygitgpt.git_operations import clone_repository, checkout_branch
from lazygitgpt.ai_operations import generate_response

@click.group()
def cli():
Expand Down

0 comments on commit 3a32fec

Please sign in to comment.