The other day I was doing unittest using sublime text 3 with Hermes, providing interaction with Jupyter kernels. Everything was fine until the unitest error occured:
1 | if __name__ == '__main__': |
After changing to:
1 | if __name__ == '__main__': |
Solved.