Skip to content

Commit

Permalink
Fix master (#73)
Browse files Browse the repository at this point in the history
* remove isort option

* fix sort
  • Loading branch information
koxudaxi committed Jul 4, 2020
1 parent 83d6d54 commit 4216548
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion local_data_api/resources/jdbc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from local_data_api.resources.resource import JDBCType, Resource

if TYPE_CHECKING: # pragma: no cover
from local_data_api.resources.resource import ConnectionMaker, Connection
from local_data_api.resources.resource import Connection, ConnectionMaker

# https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/data-api.html
"""
Expand Down
2 changes: 1 addition & 1 deletion scripts/format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
set -e

black local_data_api tests
isort --recursive local_data_api tests
isort local_data_api tests
2 changes: 1 addition & 1 deletion scripts/lint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
set -e

black local_data_api tests --check
isort --recursive --check-only tests
isort --check-only tests
mypy local_data_api

0 comments on commit 4216548

Please sign in to comment.