fixing unicode 2.7 🐛

This commit is contained in:
Niru Maheswaranathan
2017-05-25 15:09:56 -07:00
parent 721cba721b
commit c0ce08c5d7
3 changed files with 3 additions and 1 deletions

View File

@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Version info # Version info
__version__ = '0.6.8' __version__ = '0.6.9'
__license__ = 'MIT' __license__ = 'MIT'
# Project description(s) # Project description(s)

View File

@@ -2,6 +2,7 @@
""" """
Table styles Table styles
""" """
from __future__ import print_function, unicode_literals
from collections import namedtuple from collections import namedtuple
__all__ = ('STYLES', 'LineStyle', 'TableStyle') __all__ = ('STYLES', 'LineStyle', 'TableStyle')

View File

@@ -2,6 +2,7 @@
""" """
Tableprint utilities Tableprint utilities
""" """
from __future__ import print_function, unicode_literals
import re import re
import numpy as np import numpy as np