Skip to content

Commit a6c25f5

Browse files
committed
💄 update coding style
1 parent 88f96a7 commit a6c25f5

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

.isort.cfg

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[settings]
2+
line_length=79
3+
known_first_party=camelot, pyexcel_io
4+
known_third_party=mock,nose,pyexcel
5+
indent=' '
6+
multi_line_output=3
7+
length_sort=1
8+
default_section=FIRSTPARTY
9+
no_lines_before=LOCALFOLDER
10+
sections=FUTURE,STDLIB,FIRSTPARTY,THIRDPARTY,LOCALFOLDER

pyexcel_pdfr/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '0.6.0'
2-
__author__ = 'chfw'
1+
__version__ = "0.6.0"
2+
__author__ = "chfw"

pyexcel_pdfr/pdfr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:license: New BSD License
88
"""
99
import camelot
10-
from pyexcel_io.plugin_api import IReader, ISheet, NamedContent
10+
from pyexcel_io.plugin_api import ISheet, IReader, NamedContent
1111

1212

1313
class PdfTable(ISheet):

tests/test_pdfr.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import os
22

3+
from pyexcel_pdfr import get_data
4+
35
import pyexcel as p
46
from nose.tools import eq_
5-
from io import BytesIO
6-
from pyexcel_pdfr import get_data
77

88

99
def test_simple_pdf():

0 commit comments

Comments
 (0)