There was an error while loading. Please reload this page.
class SomeClass(): ...
should be just
class SomeClass: ....
Those are equivalent both on Python 3 and Python 2.
should be just
Those are equivalent both on Python 3 and Python 2.