Move format to __str__ and implement __repr__
This commit is contained in:
parent
babce61514
commit
8966ec3b19
1 changed files with 5 additions and 2 deletions
|
@ -18,7 +18,10 @@ class Board:
|
||||||
# Process the board into an array.
|
# Process the board into an array.
|
||||||
self.board = string.lower()
|
self.board = string.lower()
|
||||||
|
|
||||||
def format(self):
|
def __repr__(self):
|
||||||
|
return "<Board:'{}'>".format(self.board)
|
||||||
|
|
||||||
|
def __str__(self):
|
||||||
out = ''
|
out = ''
|
||||||
board_len = len(self.board)
|
board_len = len(self.board)
|
||||||
for x in range(board_len):
|
for x in range(board_len):
|
||||||
|
@ -37,4 +40,4 @@ def hello():
|
||||||
except ValueError:
|
except ValueError:
|
||||||
abort(400)
|
abort(400)
|
||||||
|
|
||||||
return (board.format(), 200, {'Content-type': 'text/plain'})
|
return (str(board), 200, {'Content-type': 'text/plain'})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue