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