Commit cf593f4 1 parent ac335bb commit cf593f4 Copy full SHA for cf593f4
File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 3
3
Usage:
4
4
$ ./recover_scrabble_game [INPUT_FILENAME]
5
5
6
- See tests/sample_input_files/ for examples of correctly formatted input
7
- files
6
+ See tests/sample_input_files/ for examples of correctly formatted input files
8
7
"""
9
8
import sys
10
9
11
- from scrabble . main import recover_game
10
+ import scrabble
12
11
13
12
if __name__ == '__main__' :
14
13
if len (sys .argv ) == 2 :
15
- for move_list in recover_game (sys .argv [1 ]):
14
+ for move_list in scrabble . main . recover_game (sys .argv [1 ]):
16
15
print ('{}\n ' .format (move_list ))
17
16
else :
18
17
print ('Usage: ./recover_scrabble_game [INPUT_FILENAME]' )
Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
3
setup (name = 'scrabble' ,
4
- version = '0.5 ' ,
4
+ version = '0.6 ' ,
5
5
description = 'Scrabble game with move recovery and best move analysis' ,
6
6
url = 'https://github.com/benjamincrom/scrabble' ,
7
7
author = 'Benjamin B. Crom' ,
You can’t perform that action at this time.
0 commit comments