diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2019-10-28 10:32:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-28 10:32:15 +0000 |
commit | 650356e61d157da1d7656f4b3b1e7a409fe05786 (patch) | |
tree | 9f6e67ccccd04b5b2aa5a9c5b67833da1a41a3df /Wrappers | |
parent | d82298ee9a6e38ff6e286077f52a694acd58d5db (diff) | |
download | framework-650356e61d157da1d7656f4b3b1e7a409fe05786.tar.gz framework-650356e61d157da1d7656f4b3b1e7a409fe05786.tar.bz2 framework-650356e61d157da1d7656f4b3b1e7a409fe05786.tar.xz framework-650356e61d157da1d7656f4b3b1e7a409fe05786.zip |
add future imports (#411)
Diffstat (limited to 'Wrappers')
-rwxr-xr-x | Wrappers/Python/ccpi/optimisation/algorithms/Algorithm.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Wrappers/Python/ccpi/optimisation/algorithms/Algorithm.py b/Wrappers/Python/ccpi/optimisation/algorithms/Algorithm.py index 78ce438..df8dbf5 100755 --- a/Wrappers/Python/ccpi/optimisation/algorithms/Algorithm.py +++ b/Wrappers/Python/ccpi/optimisation/algorithms/Algorithm.py @@ -20,7 +20,9 @@ # #========================================================================= - +from __future__ import absolute_import +from __future__ import division +from __future__ import print_function import time, functools from numbers import Integral |