Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
grantjenks committed Dec 28, 2022
1 parent a63c62c commit 6a12ec5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freegames/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def main():
subparsers = parser.add_subparsers(dest='command', help='sub-command help')
subparsers.required = True

parser_list = subparsers.add_parser('list', help='list games')
subparsers.add_parser('list', help='list games')

parser_play = subparsers.add_parser('play', help='play free Python games')
parser_play.add_argument('game', choices=games, help='game name')
Expand Down

0 comments on commit 6a12ec5

Please sign in to comment.