Skip to content

Commit

Permalink
🐛 Fix Sake getAccounts requires params
Browse files Browse the repository at this point in the history
  • Loading branch information
michprev committed Oct 5, 2024
1 parent b34a35e commit c814ed9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions wake/lsp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,9 +343,11 @@ def __init__(
),
RequestMethodEnum.SAKE_GET_ACCOUNTS: (
lambda params: (
self.__sake_context.get_accounts() # pyright: ignore reportAttributeAccessIssue
self.__sake_context.get_accounts( # pyright: ignore reportAttributeAccessIssue
params,
)
),
None,
SakeParams,
),
RequestMethodEnum.SAKE_DEPLOY: (
lambda params: (
Expand Down

0 comments on commit c814ed9

Please sign in to comment.