mirror of
				https://github.com/KevinMidboe/tableprint.git
				synced 2025-10-29 18:00:16 +00:00 
			
		
		
		
	fixing unicode 2.7 🐛
This commit is contained in:
		| @@ -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) | ||||||
|   | |||||||
| @@ -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') | ||||||
|   | |||||||
| @@ -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 | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user