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
The future module was introduced in Python 2.1 in order to have access to upcoming features/functions which will lead to incompatibilities with the current implementation and is extended with each version if needed.
Since we are trying to remove python 2 related dependencies. We will remove this particular import from all files for files that have it.
To be removed: from __future__ import (absolute_import, division, print_function, unicode_literals)
The text was updated successfully, but these errors were encountered:
The future module was introduced in Python 2.1 in order to have access to upcoming features/functions which will lead to incompatibilities with the current implementation and is extended with each version if needed.
Since we are trying to remove python 2 related dependencies. We will remove this particular import from all files for files that have it.
To be removed:
from __future__ import (absolute_import, division, print_function, unicode_literals)
The text was updated successfully, but these errors were encountered: