We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As we dropped Python 2 support all class definitions can be converted to class MyClass: instead of class MyClass(object):.
class MyClass:
class MyClass(object):
The text was updated successfully, but these errors were encountered:
Remove explicit derivations from object
745529d
No longer required with Python 3 and Python 2 support was dropped. Closes #241.
ef1c9ad
28bb81e
1c1c25f
No branches or pull requests
As we dropped Python 2 support all class definitions can be converted to
class MyClass:
instead ofclass MyClass(object):
.The text was updated successfully, but these errors were encountered: