From b58892dd6a1d6438ae7b66c82f4d4d98457649ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?O=C4=9Fuzhan=20O=C4=9Fuz?= <46710637+ozzy35410@users.noreply.github.com> Date: Fri, 14 Mar 2025 00:19:22 +0300 Subject: [PATCH] fix typo --- CONTRIBUTING-PYTHON.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING-PYTHON.md b/CONTRIBUTING-PYTHON.md index f85b40996..32a3b2445 100644 --- a/CONTRIBUTING-PYTHON.md +++ b/CONTRIBUTING-PYTHON.md @@ -147,7 +147,7 @@ def mint(self, wallet_provider: CdpWalletProvider, args: dict[str, Any]) -> str: Notice the return value contains useful information for the user, such as the transaction hash and link. It's important to include this information in the return value so that the user can easily see the result of the action. -This class is then exported out of [python/coinbase-agentkit/coinbase_agentkit/\_\_init\_\_.py](https://github.com/coinbase/agentkit/blob/master/python/coinbase-agentkit/coinbase_agentkit/__init__.py) so that is is consumable by users of the `coinbase-agentkit` package. +This class is then exported out of [python/coinbase-agentkit/coinbase_agentkit/\_\_init\_\_.py](https://github.com/coinbase/agentkit/blob/master/python/coinbase-agentkit/coinbase_agentkit/__init__.py) so that it is consumable by users of the `coinbase-agentkit` package. ### Testing the action provider