Skip to content

Commit ef87b88

Browse files
committed
Merge branch 'type-checking-ty' of https://github.com/a2aproject/a2a-python into type-checking-ty
2 parents db78511 + 8274c79 commit ef87b88

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/a2a/server/tasks/database_push_notification_config_store.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,10 +380,10 @@ async def delete_info(
380380

381381
result = await session.execute(stmt)
382382

383-
if result.rowcount > 0: # type: ignore[attr-defined] # ty:ignore[unresolved-attribute]
383+
if result.rowcount > 0: # ty:ignore[unresolved-attribute]
384384
logger.info(
385385
'Deleted %s push notification config(s) for task %s, owner %s.',
386-
result.rowcount, # type: ignore[attr-defined] # ty:ignore[unresolved-attribute]
386+
result.rowcount, # ty:ignore[unresolved-attribute]
387387
task_id,
388388
owner,
389389
)

0 commit comments

Comments
 (0)