How can I submit a small fix for API token management in the community Jira toolkit?

I was working with the Jira toolkit, and when doing some local debugging I noticed the API token is printed plain text if you do:

jira = JiraAPIWrapper()
toolkit = JiraToolkit.from_jira_api_wrapper(jira)
tools = toolkit.get_tools()
print(tools[0])

To avoid that, the current approach in the project seems to be using Pydantic Secretstr.

E.g.

Now, I was evaluating the alternatives and landed in this draft PR in my fork:

I was looking forward to submit it for the maintainers consideration.

Beyond, lint, test, etc, in the contributing guide it says:

The pull request must link to an issue or discussion where a solution has been approved by a maintainer.

So I’m posting it here and looking for guidance.

Also open a corresponding issue justifying why this is needed and then the issue will be assigned to you by an official maintainer. Otherwise if you have followed Contributing - Docs by LangChain, you will be good.

done. thanks!