Skip to content

Commit

Permalink
[cli] fixed indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Schott committed Jun 15, 2020
1 parent cefe715 commit 337d2ea
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions maestral/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -786,16 +786,16 @@ def ls(long: bool, dropbox_path: str, include_deleted: bool, config_name: str):
else:
last_modified.append('-')

click.echo('')
click.echo(
format_table(
headers=['Name', 'Type', 'Size', 'Shared', 'Syncing', 'Last modified'],
columns=[names, types, sizes, shared, excluded, last_modified],
alignment=[LEFT, LEFT, RIGHT, LEFT, LEFT, LEFT],
wrap=False
),
)
click.echo('')
click.echo('')
click.echo(
format_table(
headers=['Name', 'Type', 'Size', 'Shared', 'Syncing', 'Last modified'],
columns=[names, types, sizes, shared, excluded, last_modified],
alignment=[LEFT, LEFT, RIGHT, LEFT, LEFT, LEFT],
wrap=False
),
)
click.echo('')

else:
for e in entries:
Expand Down

0 comments on commit 337d2ea

Please sign in to comment.