This is an automated email from the ASF dual-hosted git repository.

sbp pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tooling-trusted-release.git


The following commit(s) were added to refs/heads/main by this push:
     new c8886ec  Fix an undetected type bug in the route to update committee 
and project data
c8886ec is described below

commit c8886ec59f6a490e08c5af2f235b45b43767e022
Author: Sean B. Palmer <[email protected]>
AuthorDate: Fri May 30 16:50:36 2025 +0100

    Fix an undetected type bug in the route to update committee and project data
---
 atr/blueprints/admin/admin.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/atr/blueprints/admin/admin.py b/atr/blueprints/admin/admin.py
index 65be76f..69e30a2 100644
--- a/atr/blueprints/admin/admin.py
+++ b/atr/blueprints/admin/admin.py
@@ -582,7 +582,8 @@ async def _update_committees() -> tuple[int, int]:  # noqa: 
C901
 
                 podling.full_name = podling_data.name
                 podling.committee = ppmc
-                podling.is_podling = True
+                # TODO: Why did the type checkers not detect this?
+                # podling.is_podling = True
 
             # Add projects and associate them with the right PMC
             for project_name, project_status in projects.items():


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to