Skip to content

Commit

Permalink
remove debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonho1308 committed Aug 3, 2021
1 parent cffd355 commit 4ecc0f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{
"label": "build",
"type": "shell",
"command": "python3 setup.py install --user"
"command": "pip install ."
}
]
}
2 changes: 1 addition & 1 deletion src/maze_gitb/scene.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ def __init__(self, random_pos: bool) -> None:
if type(self).instance is None:
self.maze = Maze.generate(term.width // 5, term.height // 3, random_pos=random_pos)
random = random_pos
self.maze = Maze.generate(7, 7, random_pos=random_pos)
# self.maze = Maze.generate(7, 7, random_pos=random_pos)
self.generate_boxes()
self.level_boundary = Boundary(
len(self.maze.char_matrix[0]),
Expand Down

0 comments on commit 4ecc0f5

Please sign in to comment.