Skip to content

Commit

Permalink
Indicate that course id is an integer
Browse files Browse the repository at this point in the history
  • Loading branch information
joelostblom committed May 31, 2021
1 parent e069a15 commit 6da8c66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions canvascli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def cli():


@cli.command()
@click.option('--course-id', default=None, required=True, help='Canvas id'
' of the course to' ' download grades from, e.g. 53665. This id'
@click.option('--course-id', default=None, required=True, type=int, help='Canvas id'
' of the course to download grades from, e.g. 53665. This id'
' can be found by running `canvascli show-courses`'
"(and in the course's canvas page URL). Default: None")
@click.option('--filename', default=None, help='Name of the saved file and chart'
Expand Down

0 comments on commit 6da8c66

Please sign in to comment.