Skip to content

Commit 6a12ec5

Browse files
committed
flake8 fix
1 parent a63c62c commit 6a12ec5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/freegames/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def main():
2828
subparsers = parser.add_subparsers(dest='command', help='sub-command help')
2929
subparsers.required = True
3030

31-
parser_list = subparsers.add_parser('list', help='list games')
31+
subparsers.add_parser('list', help='list games')
3232

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

0 commit comments

Comments
 (0)