fix: apply ruff format to connection.py and skills_cmd.py

This commit is contained in:
MinaSaad1 2026-04-05 22:32:38 +02:00
parent 62706771b2
commit 5f40a4281c
2 changed files with 4 additions and 15 deletions

View file

@ -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

View file

@ -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