Increase line length limit to 100
Up from 80.
This commit is contained in:
parent
48641adf90
commit
0af72376a1
5 changed files with 10 additions and 10 deletions
|
@ -375,7 +375,7 @@ indent-after-paren=4
|
||||||
indent-string=' '
|
indent-string=' '
|
||||||
|
|
||||||
# Maximum number of characters on a single line.
|
# Maximum number of characters on a single line.
|
||||||
max-line-length=80
|
max-line-length=100
|
||||||
|
|
||||||
# Maximum number of lines in a module.
|
# Maximum number of lines in a module.
|
||||||
max-module-lines=1000
|
max-module-lines=1000
|
||||||
|
|
|
@ -58,7 +58,7 @@ def register_plugins(app: Flask) -> Manager:
|
||||||
airbrake = Airbrake(project_id=app.config["AIRBRAKE_ID"],
|
airbrake = Airbrake(project_id=app.config["AIRBRAKE_ID"],
|
||||||
api_key=app.config["AIRBRAKE_KEY"])
|
api_key=app.config["AIRBRAKE_KEY"])
|
||||||
# ugly hack to make this work for out errbit
|
# ugly hack to make this work for out errbit
|
||||||
airbrake._api_url = "http://errbit.awesomepeople.tv/api/v3/projects/{}/notices".format( # pylint: disable=C0301,W0212
|
airbrake._api_url = "http://errbit.awesomepeople.tv/api/v3/projects/{}/notices".format( # pylint: disable=W0212
|
||||||
airbrake.project_id
|
airbrake.project_id
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -39,9 +39,9 @@ def add_all() -> None:
|
||||||
|
|
||||||
def recreate_from_scratch() -> None:
|
def recreate_from_scratch() -> None:
|
||||||
"Recreate a completely new database"
|
"Recreate a completely new database"
|
||||||
confirmation = "Are you very very sure? (Will delete previous entries!) (y/N) " # pylint: disable=C0301
|
confirmation = "Are you very very sure? (Will delete previous entries!) (y/N) "
|
||||||
check = "I acknowledge any repercussions!"
|
check = "I acknowledge any repercussions!"
|
||||||
if input(confirmation) in yes and input("Type: '{}' ".format(check)) == check: # pylint: disable=C0301
|
if input(confirmation) in yes and input("Type: '{}' ".format(check)) == check:
|
||||||
print("Resetting the database!")
|
print("Resetting the database!")
|
||||||
db.drop_all()
|
db.drop_all()
|
||||||
db.create_all()
|
db.create_all()
|
||||||
|
@ -58,14 +58,14 @@ def add_to_current() -> None:
|
||||||
).rstrip(", ")
|
).rstrip(", ")
|
||||||
|
|
||||||
while input("Do you still want to add something? (Y/n) ") not in no:
|
while input("Do you still want to add something? (Y/n) ") not in no:
|
||||||
print("What do you want to add? (Use numbers, or A for all, or C for cancel) ") # pylint: disable=C0301
|
print("What do you want to add? (Use numbers, or A for all, or C for cancel) ")
|
||||||
answer = input("Available: {} : ".format(add_numbers()))
|
answer = input("Available: {} : ".format(add_numbers()))
|
||||||
if answer == "A":
|
if answer == "A":
|
||||||
add_all()
|
add_all()
|
||||||
available = []
|
available = []
|
||||||
elif answer == "C":
|
elif answer == "C":
|
||||||
pass
|
pass
|
||||||
elif answer.isnumeric() and answer in [str(x) for x in range(len(available))]: # pylint: disable=C0301
|
elif answer.isnumeric() and answer in [str(x) for x in range(len(available))]:
|
||||||
answer_index = int(answer)
|
answer_index = int(answer)
|
||||||
print("Adding {}.".format(available[answer_index]))
|
print("Adding {}.".format(available[answer_index]))
|
||||||
entry_sets[str(available[answer_index])]()
|
entry_sets[str(available[answer_index])]()
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
"The base file for everything related to the models"
|
"The base file for everything related to the models"
|
||||||
# pylint: disable=C0301
|
# This file will expose what we want from the models module.
|
||||||
# This file will expose what we want from the models module
|
# This will probably be everything. But putting the imports here makes it possible to import all
|
||||||
# This will probably be everything. But putting the imports here makes it possible to import all models in one line like this:
|
# models in one line like this:
|
||||||
#
|
#
|
||||||
# from models import User, Item, ...
|
# from models import User, Item, ...
|
||||||
#
|
#
|
||||||
|
|
|
@ -147,7 +147,7 @@ def item_paid(order_id: int, item_id: int) -> typing.Optional[Response]:
|
||||||
@order_bp.route("/<order_id>/<user_name>/user_paid", methods=["POST"])
|
@order_bp.route("/<order_id>/<user_name>/user_paid", methods=["POST"])
|
||||||
@login_required
|
@login_required
|
||||||
# pylint: disable=R1710
|
# pylint: disable=R1710
|
||||||
def items_user_paid(order_id: int, user_name: str) -> typing.Optional[Response]: # pylint:disable=C0301
|
def items_user_paid(order_id: int, user_name: str) -> typing.Optional[Response]:
|
||||||
"Indicate payment status for a user in an order"
|
"Indicate payment status for a user in an order"
|
||||||
user = User.query.filter(User.username == user_name).first()
|
user = User.query.filter(User.username == user_name).first()
|
||||||
items: typing.List[OrderItem] = []
|
items: typing.List[OrderItem] = []
|
||||||
|
|
Loading…
Reference in a new issue