It's currently: ``` #!/usr/bin/env python ``` This implies the code works with python3 as well as python2. It does not. According to PEP 394, the shebang should be ``` #!/usr/bin/env python2 ```