Skip to content

Commit 625db7a

Browse files
committed
Pylint fix.
1 parent 1669e08 commit 625db7a

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ confidence=
5656
# --disable=W"
5757
disable=fixme,
5858
missing-docstring,
59-
invalid-name
59+
invalid-name,
60+
too-many-lines
6061
# Enable the message, report, category or checker with the given id(s). You can
6162
# either give multiple identifier separated by comma (,) or put this option
6263
# multiple time (only on the command line, not in the configuration file where

.pylintrc37

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,8 @@ disable=invalid-name,
145145
comprehension-escape,
146146
no-else-return,
147147
useless-object-inheritance,
148-
possibly-unused-variable
148+
possibly-unused-variable,
149+
too-many-lines
149150

150151
# Enable the message, report, category or checker with the given id(s). You can
151152
# either give multiple identifier separated by comma (,) or put this option

dash/dash.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -966,7 +966,7 @@ def enable_dev_tools(self,
966966
967967
:param debug: If false no tools will be activated.
968968
:type debug: bool
969-
:param dev_tools_serve_bundles: Serve the dev bundles of component libs.
969+
:param dev_tools_serve_bundles: Serve the dev bundles of component libs
970970
:type dev_tools_serve_bundles: bool
971971
:return:
972972
"""
@@ -991,7 +991,7 @@ def run_server(self,
991991
:type port: int
992992
:param debug: Set the debug mode of flask and enable the dev tools.
993993
:type debug: bool
994-
:param dev_tools_serve_dev_bundles: Serve the dev bundles of component libs.
994+
:param dev_tools_serve_dev_bundles: Serve the dev bundles of components
995995
:type dev_tools_serve_dev_bundles: bool
996996
:param flask_run_options: Given to `Flask.run`
997997
:return:

tests/IntegrationTests.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ def run():
4848
port=8050,
4949
debug=False,
5050
processes=4,
51-
threaded=False,
52-
dev_tools=False
51+
threaded=False
5352
)
5453

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

0 commit comments

Comments
 (0)