Skip to content

Commit

Permalink
Fixes travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Jan 19, 2019
1 parent 14243b6 commit 14943a4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
3 changes: 2 additions & 1 deletion docs/pages/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ to understand how all components are bound together.
Visitor->>Violation: Visitors raise violations when they find bad code
Violation-->>flake8: Raised violations are shown to user by flake8

We use a layered architecture that follows this contract:
We use a `layered architecture <https://layer-linter.readthedocs.io/en/stable/concepts.html>`_
that follows this contract:

.. literalinclude :: ../../layers.yml
:language: yaml
Expand Down
1 change: 1 addition & 0 deletions layers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Linting process:
- visitors
- violations
- logics
- options
6 changes: 1 addition & 5 deletions wemake_python_styleguide/checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,9 @@
from wemake_python_styleguide import constants, types
from wemake_python_styleguide import version as pkg_version
from wemake_python_styleguide.options.config import Configuration
from wemake_python_styleguide.presets import complexity, general, tokens
from wemake_python_styleguide.transformations.ast_tree import transform
from wemake_python_styleguide.visitors import base
from wemake_python_styleguide.presets import (
complexity,
general,
)
from wemake_python_styleguide.presets import tokens

VisitorClass = Type[base.BaseVisitor]

Expand Down

0 comments on commit 14943a4

Please sign in to comment.