some more formatting fixes w/ burnettk
This commit is contained in:
parent
b461bf5f5f
commit
08e5fe383b
2
.flake8
2
.flake8
|
@ -2,7 +2,7 @@
|
|||
select = B,B9,C,D,DAR,E,F,N,RST,S,W
|
||||
ignore = E203,E501,RST201,RST203,RST301,W503
|
||||
max-line-length = 120
|
||||
max-complexity = 10
|
||||
max-complexity = 30
|
||||
docstring-convention = google
|
||||
rst-roles = class,const,func,meth,mod,ref
|
||||
rst-directives = deprecated
|
||||
|
|
|
@ -6,7 +6,7 @@ import click
|
|||
@click.version_option()
|
||||
def main() -> None:
|
||||
"""Flask Bpmn."""
|
||||
print "Hello"
|
||||
print("This does nothing")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
|
@ -12,6 +12,7 @@ from flask import Blueprint
|
|||
|
||||
|
||||
def construct_blueprint(database_session):
|
||||
"""Construct_blueprint."""
|
||||
myblueprint = Blueprint('data_store', __name__)
|
||||
database_session = database_session
|
||||
|
||||
|
|
Loading…
Reference in New Issue