Skip to content

Commit

Permalink
isort: fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed May 6, 2020
1 parent 2bb7257 commit 227dbf4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ select=B,C,E,F,W,T4,B9

[isort]
include_trailing_comma=true
known_first_party=dvc
known_first_party=dvc,tests
known_third_party=git
line_length=79
multi_line_output=3
2 changes: 1 addition & 1 deletion tests/func/test_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@

import pytest
import yaml
from bs4 import BeautifulSoup
from funcy import first

from bs4 import BeautifulSoup
from dvc.compat import fspath
from dvc.repo.plot import NoDataOrTemplateProvided
from dvc.repo.plot.data import (
Expand Down
4 changes: 2 additions & 2 deletions tests/func/test_s3.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
from functools import wraps

import boto3
import moto.s3.models as s3model
import pytest
from moto import mock_s3

import moto.s3.models as s3model
from dvc.remote.s3 import S3Remote
from moto import mock_s3
from tests.remotes import S3

# from https://github.com/spulec/moto/blob/v1.3.5/tests/test_s3/test_s3.py#L40
Expand Down
3 changes: 2 additions & 1 deletion tests/remotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
from contextlib import contextmanager
from subprocess import CalledProcessError, Popen, check_output

from moto.s3 import mock_s3

from dvc.remote import GDriveRemote
from dvc.remote.gs import GSRemote
from dvc.remote.s3 import S3Remote
from dvc.utils import env2bool
from moto.s3 import mock_s3
from tests.basic_env import TestDvc

TEST_REMOTE = "upstream"
Expand Down

0 comments on commit 227dbf4

Please sign in to comment.