Skip to content

Commit

Permalink
Pylint fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
T4rk1n committed Sep 17, 2018
1 parent 6d43b21 commit 7b3d319
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,8 @@ confidence=
# --disable=W"
disable=fixme,
missing-docstring,
invalid-name
invalid-name,
too-many-lines
# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
Expand Down
3 changes: 2 additions & 1 deletion .pylintrc37
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ disable=invalid-name,
comprehension-escape,
no-else-return,
useless-object-inheritance,
possibly-unused-variable
possibly-unused-variable,
too-many-lines

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
4 changes: 2 additions & 2 deletions dash/dash.py
Original file line number Diff line number Diff line change
Expand Up @@ -971,7 +971,7 @@ def enable_dev_tools(self,
:param debug: If false no tools will be activated.
:type debug: bool
:param dev_tools_serve_bundles: Serve the dev bundles of component libs.
:param dev_tools_serve_bundles: Serve the dev bundles of component libs
:type dev_tools_serve_bundles: bool
:return:
"""
Expand All @@ -996,7 +996,7 @@ def run_server(self,
:type port: int
:param debug: Set the debug mode of flask and enable the dev tools.
:type debug: bool
:param dev_tools_serve_dev_bundles: Serve the dev bundles of component libs.
:param dev_tools_serve_dev_bundles: Serve the dev bundles of components
:type dev_tools_serve_dev_bundles: bool
:param flask_run_options: Given to `Flask.run`
:return:
Expand Down
3 changes: 1 addition & 2 deletions tests/IntegrationTests.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ def run():
port=8050,
debug=False,
processes=4,
threaded=False,
dev_tools=False
threaded=False
)

# Run on a separate process so that it doesn't block
Expand Down

0 comments on commit 7b3d319

Please sign in to comment.