File tree 4 files changed +7
-6
lines changed 4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,8 @@ confidence=
56
56
# --disable=W"
57
57
disable =fixme,
58
58
missing-docstring,
59
- invalid-name
59
+ invalid-name,
60
+ too-many-lines
60
61
# Enable the message, report, category or checker with the given id(s). You can
61
62
# either give multiple identifier separated by comma (,) or put this option
62
63
# multiple time (only on the command line, not in the configuration file where
Original file line number Diff line number Diff line change @@ -145,7 +145,8 @@ disable=invalid-name,
145
145
comprehension-escape,
146
146
no-else-return,
147
147
useless-object-inheritance,
148
- possibly-unused-variable
148
+ possibly-unused-variable,
149
+ too-many-lines
149
150
150
151
# Enable the message, report, category or checker with the given id(s). You can
151
152
# either give multiple identifier separated by comma (,) or put this option
Original file line number Diff line number Diff line change @@ -966,7 +966,7 @@ def enable_dev_tools(self,
966
966
967
967
:param debug: If false no tools will be activated.
968
968
: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
970
970
:type dev_tools_serve_bundles: bool
971
971
:return:
972
972
"""
@@ -991,7 +991,7 @@ def run_server(self,
991
991
:type port: int
992
992
:param debug: Set the debug mode of flask and enable the dev tools.
993
993
: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
995
995
:type dev_tools_serve_dev_bundles: bool
996
996
:param flask_run_options: Given to `Flask.run`
997
997
:return:
Original file line number Diff line number Diff line change @@ -48,8 +48,7 @@ def run():
48
48
port = 8050 ,
49
49
debug = False ,
50
50
processes = 4 ,
51
- threaded = False ,
52
- dev_tools = False
51
+ threaded = False
53
52
)
54
53
55
54
# Run on a separate process so that it doesn't block
You can’t perform that action at this time.
0 commit comments