pep8 fixings

This commit is contained in:
Stephen McQuay 2012-10-31 21:44:29 -07:00
parent 684afb8d52
commit d20f51b986
2 changed files with 3 additions and 5 deletions

View File

@ -35,7 +35,6 @@ class CS235Maze(object):
self._data[x][y][z] = TEMP
return False
def solve(self):
return self._solve(0, 0, 0)

View File

@ -81,7 +81,6 @@ class MazeTests(unittest.TestCase):
"""
self.m = parse_maze(s)
def test_at_indices(self):
assert self.m._data[7][0][0] == 0
assert self.m._data[7][3][0] == 1