Skip to content

Commit

Permalink
fix small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
vighneshiyer committed Dec 27, 2023
1 parent 3554ce6 commit 55992b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion today/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def maybe_display_specific_task(args: CliArgs, tasks: List[Task], console: Conso
console.print(f"The task_id {args.task_id} does not exist")
sys.exit(1)
task = tasks[args.task_id]
details = task_details(task, args.task_id, args.today)
details = task.details(args.task_id, args.today)
console.print("")
console.print(Markdown(details))
console.print("")
Expand Down

0 comments on commit 55992b3

Please sign in to comment.