Tree: Depth-First Search - Maximum Depth of Binary Tree
The following recursive code attempts to compute the maximum depth of a binary tree. Identify the bug:
```python
def maxDepth(root):
if root is None:
return 0
left = maxDepth(root.left)
right = maxDepth(root.right)
return left + right
```
