Skip to content

Change all Py2 style class definition to Py3 style #812

@haifeng-jin

Description

@haifeng-jin

Change all occurance of class SomeClass(object): to class SomeClass: throughout the codebase.
This is the recommended style in Python 3.
More details.

For example, this:

class Stateful(object):

needs to be changed to:

class Stateful:

Please comment on this issue before you start working on it so that others can know.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions