diff --git a/tableprint/metadata.py b/tableprint/metadata.py index c745d13..a0a705b 100644 --- a/tableprint/metadata.py +++ b/tableprint/metadata.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- # Version info -__version__ = '0.6.8' +__version__ = '0.6.9' __license__ = 'MIT' # Project description(s) diff --git a/tableprint/style.py b/tableprint/style.py index 162295e..35dc92d 100644 --- a/tableprint/style.py +++ b/tableprint/style.py @@ -2,6 +2,7 @@ """ Table styles """ +from __future__ import print_function, unicode_literals from collections import namedtuple __all__ = ('STYLES', 'LineStyle', 'TableStyle') diff --git a/tableprint/utils.py b/tableprint/utils.py index 4efe295..9dd4e1d 100644 --- a/tableprint/utils.py +++ b/tableprint/utils.py @@ -2,6 +2,7 @@ """ Tableprint utilities """ +from __future__ import print_function, unicode_literals import re import numpy as np