-
-
Notifications
You must be signed in to change notification settings - Fork 76
Improve bip32.py type hint #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Codecov ReportBase: 86.15% // Head: 86.17% // Increases project coverage by
Additional details and impacted files@@ Coverage Diff @@
## main #107 +/- ##
==========================================
+ Coverage 86.15% 86.17% +0.01%
==========================================
Files 24 24
Lines 2630 2625 -5
Branches 517 515 -2
==========================================
- Hits 2266 2262 -4
- Misses 268 269 +1
+ Partials 96 94 -2
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report at Codecov. |
ADD. mypy added to the static analyses step
DELETE. unnecessary conditional check of pnode in the derivation step
…hey are all required in each derivation step
Major Updates
Minor Updates
|
This is great, thanks for creating the first mypy check! One suggestion, could you also change this CI action to use mypy: https://github.com/cffls/pycardano/blob/main/.github/workflows/main.yml#L33? I think |
ADD. adding a mypy exclude list which will act like a todo list in the future
Hi Jerry, I've added a list of python modules to be excluded in the mypy and generalized It seems there was an error on Codecov service while running the ci/cd pipeline. |
Awesome, thanks for creating this smart check! |
Oops, missed your last question, sorry. You can go click on the failed job, and in the upper-right corner of the workflow, use the Re-run jobs drop-down menu, and select Re-run all jobs. See this doc: https://docs.github.com/en/actions/managing-workflow-runs/re-running-workflows-and-jobs |
Since I believe PyCardano will be a foundational and critical component of the future Python Cardano dev ecosystem, I would like to start improving PyCardano code quality by improving type hint one bit at a time.
Goal