Skip to content

Commit

Permalink
show lists: f-string not properly specified
Browse files Browse the repository at this point in the history
  • Loading branch information
delucks committed Jul 18, 2020
1 parent ae098a7 commit 35c99df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gtd.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def show_lists(ctx, use_json, show_all):
return
ctx.display.banner()
for list_struct in lists_json:
print(f'list_struct["name"] (list_struct["id"])')
print(f'{list_struct["name"]} ({list_struct["id"]})')


@show.command('tags')
Expand Down

0 comments on commit 35c99df

Please sign in to comment.