You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Classes should subclass object to ensure compatibility among Python 2.x and Python 3.x versions.
Without subclassing object these classes are 'old-style' which have some very different behaviors around how super works and several other differences. Read more here: https://www.python.org/doc/newstyle/
Classes should subclass
object
to ensure compatibility among Python 2.x and Python 3.x versions.Without subclassing
object
these classes are 'old-style' which have some very different behaviors around howsuper
works and several other differences. Read more here: https://www.python.org/doc/newstyle/The
Facade
andFakeResponse
classes, for example, should be updated:https://github.com/unicefuganda/eums/blob/master/eums/vision/vision_facade.py#L32
https://github.com/unicefuganda/eums/blob/master/eums/rapid_pro/fake_response.py#L1
Also some here:
https://github.com/unicefuganda/eums/blob/master/eums/test/services/mock_celery.py
The text was updated successfully, but these errors were encountered: