mirror of
https://github.com/KevinMidboe/tableprint.git
synced 2025-10-29 09:50:17 +00:00
fixing unicode 2.7 🐛
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Version info
|
||||
__version__ = '0.6.8'
|
||||
__version__ = '0.6.9'
|
||||
__license__ = 'MIT'
|
||||
|
||||
# Project description(s)
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"""
|
||||
Table styles
|
||||
"""
|
||||
from __future__ import print_function, unicode_literals
|
||||
from collections import namedtuple
|
||||
|
||||
__all__ = ('STYLES', 'LineStyle', 'TableStyle')
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
"""
|
||||
Tableprint utilities
|
||||
"""
|
||||
from __future__ import print_function, unicode_literals
|
||||
import re
|
||||
import numpy as np
|
||||
|
||||
|
||||
Reference in New Issue
Block a user