google / mobly

E2E test framework for tests with complex environment requirements.
https://github.com/google/mobly
Apache License 2.0
628 stars 175 forks source link

Drop the py2 compatibility in super() statements. #722

Closed eric100lin closed 3 years ago

eric100lin commented 3 years ago

In code that must support python2,  super must be called as super(MyClass, self), but in python3-only code this is unnecessary and not recommended.


This change is Reviewable