Skip to content
Snippets Groups Projects

Fix all linting violation

Merged Bo-Chun Chen requested to merge louistw/account-app:fix-linting into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -43,7 +43,7 @@ def request_account(json, methods=["GET", "POST"]):
+ str(json)
)
room = str(session["uid"])
print("Room: {}".format(room))
print(f"Room: {room}")
try:
tasks.celery_create_account.delay(json, session=room)
except Exception as e:
@@ -63,7 +63,7 @@ def certify_account(json, methods=["GET", "POST"]):
+ str(json)
)
room = str(session["uid"])
print("CERTIFY Room: {}".format(room))
print(f"CERTIFY Room: {room}")
try:
tasks.celery_certify_account(json, session=room)
except Exception as e:
Loading