Skip to content

Commit cf593f4

Browse files
committed
Version 0.6
1 parent ac335bb commit cf593f4

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

bin/recover_scrabble_game

+3-4
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,15 @@
33
Usage:
44
$ ./recover_scrabble_game [INPUT_FILENAME]
55
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
87
"""
98
import sys
109

11-
from scrabble.main import recover_game
10+
import scrabble
1211

1312
if __name__ == '__main__':
1413
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]):
1615
print('{}\n'.format(move_list))
1716
else:
1817
print('Usage: ./recover_scrabble_game [INPUT_FILENAME]')

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(name='scrabble',
4-
version='0.5',
4+
version='0.6',
55
description='Scrabble game with move recovery and best move analysis',
66
url='https://github.com/benjamincrom/scrabble',
77
author='Benjamin B. Crom',

0 commit comments

Comments
 (0)