Skip to content

Commit

Permalink
import future print in the right spot
Browse files Browse the repository at this point in the history
  • Loading branch information
saturnboy committed Oct 22, 2019
1 parent f6a6006 commit e1deba1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions assertpy/assertpy.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

"""Assertion library for python unit testing with a fluent API"""

from __future__ import print_function
import os
import types
import contextlib
Expand Down
1 change: 0 additions & 1 deletion assertpy/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from __future__ import print_function
import sys
import numbers
import datetime
Expand Down
2 changes: 1 addition & 1 deletion assertpy/numeric.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from __future__ import division, print_function
from __future__ import division
import sys
import math
import numbers
Expand Down

0 comments on commit e1deba1

Please sign in to comment.