mirror of
https://github.com/kennethreitz/tablib.git
synced 2026-06-05 06:56:13 +00:00
Add known third parties to isort
This commit is contained in:
+1
-1
@@ -1,7 +1,7 @@
|
||||
[tool.isort]
|
||||
force_grid_wrap = 0
|
||||
include_trailing_comma = true
|
||||
known_third_party = ["MarkupPy", "odf", "openpyxl", "pkg_resources", "setuptools", "tablib", "xlrd", "xlwt", "yaml"]
|
||||
line_length = 88
|
||||
multi_line_output = 3
|
||||
use_parentheses = true
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
""" Tablib. """
|
||||
from pkg_resources import DistributionNotFound, get_distribution
|
||||
|
||||
from tablib.core import (
|
||||
Databook,
|
||||
Dataset,
|
||||
|
||||
@@ -3,11 +3,10 @@
|
||||
|
||||
from io import BytesIO
|
||||
|
||||
import tablib
|
||||
import xlrd
|
||||
import xlwt
|
||||
|
||||
import tablib
|
||||
|
||||
title = 'xls'
|
||||
extensions = ('xls',)
|
||||
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
from io import BytesIO
|
||||
|
||||
import openpyxl
|
||||
|
||||
import tablib
|
||||
|
||||
Workbook = openpyxl.workbook.Workbook
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
""" Tablib - YAML Support.
|
||||
"""
|
||||
|
||||
import yaml
|
||||
|
||||
import tablib
|
||||
import yaml
|
||||
|
||||
title = 'yaml'
|
||||
extensions = ('yaml', 'yml')
|
||||
|
||||
@@ -8,9 +8,8 @@ import pickle
|
||||
import unittest
|
||||
from uuid import uuid4
|
||||
|
||||
from MarkupPy import markup
|
||||
|
||||
import tablib
|
||||
from MarkupPy import markup
|
||||
from tablib.core import Row, detect_format
|
||||
from tablib.formats import _csv as csv_module
|
||||
|
||||
|
||||
Reference in New Issue
Block a user