We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8a9e7e commit 7a30cc6Copy full SHA for 7a30cc6
packages/postgres-database/src/simcore_postgres_database/utils_groups_extra_properties.py
@@ -135,10 +135,12 @@ async def get_v2(
135
raise GroupExtraPropertiesNotFoundError(msg)
136
137
@staticmethod
138
- def _aggregate(rows, user_id, product_name, from_row: Callable):
+ def _aggregate(
139
+ rows, user_id, product_name, from_row: Callable
140
+ ) -> GroupExtraProperties:
141
merged_standard_extra_properties = None
142
for row in rows:
- group_extra_properties = from_row(row)
143
+ group_extra_properties: GroupExtraProperties = from_row(row)
144
match row.type:
145
case GroupType.PRIMARY:
146
# this always has highest priority
0 commit comments