Commit db9ae8b6 authored by Andrey Golovizin's avatar Andrey Golovizin
Browse files

Move import below the version header

parent 99888832
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
from __future__ import unicode_literals
# Copyright (c) 2006-2017  Andrey Golovigin
#
# Permission is hereby granted, free of charge, to any person obtaining
@@ -20,6 +19,8 @@ from __future__ import unicode_literals
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

from __future__ import unicode_literals

from pybtex.style import FormattedEntry, FormattedBibliography
from pybtex.style.template import node, join
from pybtex.richtext import Symbol
+3 −5
Original line number Diff line number Diff line
from __future__ import unicode_literals

from pybtex.style.formatting.unsrt import Style as UnsrtStyle


# Copyright (c) 2006-2017  Andrey Golovigin
#
# Permission is hereby granted, free of charge, to any person obtaining
@@ -24,6 +19,9 @@ from pybtex.style.formatting.unsrt import Style as UnsrtStyle
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

from __future__ import unicode_literals

from pybtex.style.formatting.unsrt import Style as UnsrtStyle


class Style(UnsrtStyle):