Skip to content

Commit c2c0844

Browse files
committed
ruff format
1 parent 2417571 commit c2c0844

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/user_vault/get_vault_items.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ def display_vault_items(items, show_values: bool = False):
4545
click.echo(f"\nFound {len(items)} vault item(s)\n")
4646

4747
for vault_type, type_items in sorted(grouped.items(), key=lambda x: x[0]):
48-
click.echo(f"{'='*50}")
48+
click.echo(f"{'=' * 50}")
4949
click.echo(f"Type: {vault_type} ({len(type_items)} item(s))")
50-
click.echo(f"{'='*50}")
50+
click.echo(f"{'=' * 50}")
5151

5252
for item in sorted(type_items, key=lambda x: x.key):
5353
if show_values and item.value is not None:

0 commit comments

Comments
 (0)