mirror of
https://github.com/MinaSaad1/pbi-cli
synced 2026-04-21 13:37:19 +00:00
fix: apply ruff format to connection.py and skills_cmd.py
This commit is contained in:
parent
62706771b2
commit
5f40a4281c
2 changed files with 4 additions and 15 deletions
|
|
@ -190,6 +190,3 @@ def _auto_discover_data_source() -> str:
|
|||
data_source = f"localhost:{port}"
|
||||
print_info(f"Auto-detected Power BI Desktop on {data_source}")
|
||||
return data_source
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -74,18 +74,10 @@ def skills_install(skill_name: str | None, force: bool, yes: bool) -> None:
|
|||
)
|
||||
|
||||
if not yes:
|
||||
click.echo(
|
||||
"This command will modify your global Claude Code configuration:\n"
|
||||
)
|
||||
click.echo(
|
||||
f" {'~/.claude/skills/power-bi-*/':<52} copy {len(to_install)} skill file(s)"
|
||||
)
|
||||
click.echo(
|
||||
f" {'~/.claude/CLAUDE.md':<52} append pbi-cli skill trigger block"
|
||||
)
|
||||
click.echo(
|
||||
"\nThis affects ALL Claude Code sessions, not just Power BI work."
|
||||
)
|
||||
click.echo("This command will modify your global Claude Code configuration:\n")
|
||||
click.echo(f" {'~/.claude/skills/power-bi-*/':<52} copy {len(to_install)} skill file(s)")
|
||||
click.echo(f" {'~/.claude/CLAUDE.md':<52} append pbi-cli skill trigger block")
|
||||
click.echo("\nThis affects ALL Claude Code sessions, not just Power BI work.")
|
||||
if not click.confirm("\nProceed?", default=False):
|
||||
click.echo("Aborted.")
|
||||
return
|
||||
|
|
|
|||
Loading…
Reference in a new issue