From afebb22ac57fb4ded1d00e4d6f3f88482d664746 Mon Sep 17 00:00:00 2001 From: Andrea Callia D'Iddio <ac4014@ic.ac.uk> Date: Fri, 10 Feb 2023 15:02:24 +0000 Subject: [PATCH] Fix: fix style issues --- app/views/staff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/staff.py b/app/views/staff.py index df5d84d..c427c24 100644 --- a/app/views/staff.py +++ b/app/views/staff.py @@ -166,7 +166,7 @@ def edit_project(project_id): shortlist_proposer(project) return redirect(url_for("staff.projects")) form = ProjectForm(obj=project) - form.meeting_mode.data = "remote" if project.is_remote == True else "" + form.meeting_mode.data = "remote" if project.is_remote is True else "" form.category.choices = [(c.code, c.name) for c in categories] if project.on_behalf is not None: -- GitLab