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

Sort imports with isort

parent 7b1af258
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
"""Generate man pages for pybtex and pybtex-convert.
"""

from __future__ import with_statement, print_function
from __future__ import print_function, with_statement

import os
import sys
+9 −5
Original line number Diff line number Diff line
@@ -25,13 +25,17 @@ from __future__ import absolute_import
import re
from string import ascii_letters, digits

from pygments.style import Style
from pygments.lexer import RegexLexer, ExtendedRegexLexer, include, default, words
from pygments.token import Keyword, Name, Comment, String, Error, \
     Number, Operator, Generic, Literal, Punctuation, Text

from pybtex.database.input.bibtex import NAME_CHARS

from pygments.lexer import (
    ExtendedRegexLexer, RegexLexer, default, include, words
)
from pygments.style import Style
from pygments.token import (
    Comment, Error, Generic, Keyword, Literal, Name, Number, Operator,
    Punctuation, String, Text
)

from . import add_entry_point


+1 −1
Original line number Diff line number Diff line
@@ -12,8 +12,8 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import os
import sys
from datetime import datetime

from pybtex import __version__
+1 −1
Original line number Diff line number Diff line
@@ -12,8 +12,8 @@
# All configuration values have a default; values that are commented out
# serve to show the default.

import sys
import os
import sys
from datetime import datetime

from pybtex import __version__
+0 −1
Original line number Diff line number Diff line
from setuptools import setup


setup(name='Sample Pybtex plugins',
    author='Andrey Golovizin',
    py_modules=['toyplugins'],
Loading