-
Notifications
You must be signed in to change notification settings - Fork 3
chore: enable isort #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
ec5f887
16d1c1b
8f397f7
aa63628
71c6570
8c779be
c32c15a
2ba4cec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,7 +10,7 @@ | |
| # Third-Party | ||
| import typer | ||
|
|
||
| # First-Party | ||
| # Local | ||
| from cforge.common.console import get_console | ||
|
|
||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,20 +8,22 @@ | |
| """ | ||
|
|
||
| # Standard | ||
| import json | ||
| from pathlib import Path | ||
| from typing import Optional | ||
| import json | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There shouldn't be a newline before this. It looks like this change (a newline between the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. removed lines_between_types = 1 in the config! |
||
|
|
||
| # Third-Party | ||
| import typer | ||
|
|
||
| # First-Party | ||
| from mcpgateway.schemas import A2AAgentCreate, A2AAgentUpdate | ||
|
|
||
| # Local | ||
| from cforge.common.console import get_console | ||
| from cforge.common.errors import handle_exception | ||
| from cforge.common.http import make_authenticated_request | ||
| from cforge.common.prompting import prompt_for_schema | ||
| from cforge.common.render import print_json, print_table | ||
| from mcpgateway.schemas import A2AAgentCreate, A2AAgentUpdate | ||
|
|
||
|
|
||
| def a2a_list( | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ | |
| # Third-Party | ||
| import typer | ||
|
|
||
| # First-Party | ||
| # Local | ||
| from cforge.common.console import get_console | ||
|
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be removed