diff --git a/.ds.baseline b/.ds.baseline index df4be33a6..d2e47c723 100644 --- a/.ds.baseline +++ b/.ds.baseline @@ -555,7 +555,7 @@ "filename": "tests/app/main/views/test_register.py", "hashed_secret": "5baa61e4c9b93f3f0682250b6cf8331b7ee68fd8", "is_verified": false, - "line_number": 200, + "line_number": 199, "is_secret": false }, { @@ -563,7 +563,7 @@ "filename": "tests/app/main/views/test_register.py", "hashed_secret": "bb5b7caa27d005d38039e3797c3ddb9bcd22c3c8", "is_verified": false, - "line_number": 273, + "line_number": 272, "is_secret": false } ], @@ -684,5 +684,5 @@ } ] }, - "generated_at": "2025-01-13T20:16:58Z" + "generated_at": "2025-01-17T02:22:09Z" } diff --git a/app/main/views/index.py b/app/main/views/index.py index e05e72e87..8b63d2bd8 100644 --- a/app/main/views/index.py +++ b/app/main/views/index.py @@ -32,11 +32,7 @@ def check_feature_flags(): @main.route("/test/feature-flags") def test_feature_flags(): return jsonify( - { - "FEATURE_ABOUT_PAGE_ENABLED": current_app.config[ - "FEATURE_ABOUT_PAGE_ENABLED" - ] - } + {"FEATURE_ABOUT_PAGE_ENABLED": current_app.config["FEATURE_ABOUT_PAGE_ENABLED"]} ) @@ -235,7 +231,6 @@ def contact(): return render_template( "views/contact.html", navigation_links=about_notify_nav(), - ) @@ -268,7 +263,6 @@ def join_notify(): return render_template( "views/join-notify.html", navigation_links=about_notify_nav(), - ) diff --git a/app/templates/views/dashboard/activity-table.html b/app/templates/views/dashboard/activity-table.html index 7d4c4a07a..eec134ebf 100644 --- a/app/templates/views/dashboard/activity-table.html +++ b/app/templates/views/dashboard/activity-table.html @@ -18,7 +18,6 @@
{% if jobs %} {% for job in jobs %} - {% set notification = job.notifications[0] %}