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
+ 3
2
Compare changes
  • Side-by-side
  • Inline
+ 3
2
@@ -18,6 +18,7 @@ from flask_cors import CORS
# local imports
import messages
import vars
sys.path.append(vars.rabbitmq_agents_loc)
import rc_util # noqa: E402
@@ -99,10 +100,10 @@ def create_app(config_name):
pre_certification_msg=messages.pre_certification_message,
certification_msg=messages.certification_message,
)
elif rc_util.check_state(session['user'].get('username')) == "ok":
elif rc_util.check_state(session["user"].get("username")) == "ok":
return render_template(
"account/good_standing.html",
good_standing_msg=messages.good_standing_message
good_standing_msg=messages.good_standing_message,
)
else:
return render_template(
Loading