Add swp_spc_l02l1.py - #16
Merged
Merged
Conversation
These are mostly like changing `typing.Callable` to `collections.abc.Callable` in type annotations, and are unlikely to come up anymore.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This pull request adds
swp_spc_l02l1.py, which contains functionality related to the decommutator and the command line interface with argparse.Details
This PR makes some updates such as autoformatting with
ruff formatand autofixes withruff check --fixvia pre-commit.It also includes many ignore comments for
ruff checkandty check; these will be useful to give ideas for helpful refactorings to improve code readability and maintainability.This PR also makes usage of
# ruff:ignore[...]comments rather than# noqa: ...comments to ignore ruff rules, since thenoqa(which stands for "no quality assurance") isn't well known for scientists.