From ed1e9659f103260a32536b4a7615393e3b1173dc Mon Sep 17 00:00:00 2001 From: Jon Dufresne Date: Tue, 27 Aug 2019 04:36:38 -0700 Subject: MAINT: Remove unnecessary 'from __future__ import ...' statements As numpy is Python 3 only, these import statements are now unnecessary and don't alter runtime behavior. --- numpy/lib/tests/test_packbits.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'numpy/lib/tests/test_packbits.py') diff --git a/numpy/lib/tests/test_packbits.py b/numpy/lib/tests/test_packbits.py index 95a465c36..5b07f41c6 100644 --- a/numpy/lib/tests/test_packbits.py +++ b/numpy/lib/tests/test_packbits.py @@ -1,5 +1,3 @@ -from __future__ import division, absolute_import, print_function - import numpy as np from numpy.testing import assert_array_equal, assert_equal, assert_raises import pytest -- cgit v1.2.1