mirror of
https://github.com/System-End/nephthys.git
synced 2026-04-19 19:45:12 +00:00
fix pyright error
This commit is contained in:
parent
b4c04422f7
commit
ef7a827a53
1 changed files with 5 additions and 2 deletions
|
|
@ -68,8 +68,11 @@ async def close_stale_tickets():
|
|||
|
||||
for ticket in stale_tickets:
|
||||
await resolve(
|
||||
ticket.msgTs, ticket.openedBy.slackId, env.slack_client, stale=True
|
||||
) # type: ignore (this is valid - see include above)
|
||||
ticket.msgTs,
|
||||
ticket.openedBy.slackId, # type: ignore (this is valid - see include above)
|
||||
env.slack_client,
|
||||
stale=True,
|
||||
)
|
||||
|
||||
await send_heartbeat(f"Closed {len(stale_tickets)} stale tickets.")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue