mirror of
				https://github.com/KevinMidboe/tableprint.git
				synced 2025-10-29 18:00:16 +00:00 
			
		
		
		
	Adds unicode encoding strings back to python files
This commit is contained in:
		| @@ -1,3 +1,4 @@ | |||||||
|  | # -*- coding: utf-8 -*- | ||||||
| """ | """ | ||||||
| Tableprint | Tableprint | ||||||
|  |  | ||||||
| @@ -19,7 +20,7 @@ import numpy as np | |||||||
|  |  | ||||||
| __all__ = ('table', 'header', 'row', 'hr', 'top', 'bottom', | __all__ = ('table', 'header', 'row', 'hr', 'top', 'bottom', | ||||||
|            'banner', 'dataframe', 'humantime', 'styles') |            'banner', 'dataframe', 'humantime', 'styles') | ||||||
| __version__ = '0.5.2' | __version__ = '0.5.3' | ||||||
|  |  | ||||||
| # set up table styles | # set up table styles | ||||||
| LineStyle = namedtuple('LineStyle', ('begin', 'hline', 'sep', 'end')) | LineStyle = namedtuple('LineStyle', ('begin', 'hline', 'sep', 'end')) | ||||||
|   | |||||||
| @@ -1,3 +1,4 @@ | |||||||
|  | # -*- coding: utf-8 -*- | ||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
| from tableprint import top, bottom, row | from tableprint import top, bottom, row | ||||||
| import pytest | import pytest | ||||||
|   | |||||||
| @@ -1,3 +1,4 @@ | |||||||
|  | # -*- coding: utf-8 -*- | ||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
| from tableprint import table, banner, dataframe, hr | from tableprint import table, banner, dataframe, hr | ||||||
| from io import StringIO | from io import StringIO | ||||||
|   | |||||||
| @@ -1,3 +1,4 @@ | |||||||
|  | # -*- coding: utf-8 -*- | ||||||
| from __future__ import unicode_literals | from __future__ import unicode_literals | ||||||
| from tableprint import humantime, _format_line, LineStyle | from tableprint import humantime, _format_line, LineStyle | ||||||
| import pytest | import pytest | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user