Skip to content

Commit

Permalink
Improved black-isort compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Collins committed Sep 4, 2020
1 parent 1610d97 commit 1912de7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,12 @@ sphinx-rtd-theme = "^0.5.0"
exclude = '(\.eggs|\.git|\.venv)'

[tool.isort]
multi_line_output=3
include_trailing_comma=true
force_grid_wrap=0
use_parentheses=true
line_length=88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88

[build-system]
requires = ["poetry>=0.12"]
Expand Down
5 changes: 0 additions & 5 deletions src/labthings/labthing.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,6 @@
# from apispec.ext.marshmallow import MarshmallowPlugin







class LabThing:
"""
The main entry point for the application.
Expand Down
3 changes: 1 addition & 2 deletions src/labthings/views/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
from ..representations import DEFAULT_REPRESENTATIONS
from ..schema import ActionSchema, Schema, build_action_schema
from ..utilities import unpack
from . import op
from . import builder
from . import builder, op

__all__ = ["MethodView", "View", "ActionView", "PropertyView", "op", "builder"]

Expand Down

0 comments on commit 1912de7

Please sign in to comment.