Skip to content

Commit

Permalink
Make code style checks happy
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Feb 20, 2016
1 parent 121a24d commit babd43f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

import os
import sys
import types

# Add the 'executor' source distribution's root directory to the module path.
sys.path.insert(0, os.path.abspath(os.pardir))
Expand Down Expand Up @@ -42,7 +41,7 @@
# built documents.

# Find the package version and make it the release.
from executor import __version__ as executor_version
from executor import __version__ as executor_version # noqa

# The short X.Y version.
version = '.'.join(executor_version.split('.')[:2])
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ exclude = .tox
max-line-length = 120

[pep257]
ignore = D301,D402
ignore = D211,D301,D402

0 comments on commit babd43f

Please sign in to comment.