[x] My code passes, following the style guidelines pre-commit run -a
[x] My code is properly tested with pytest -sv tests
[x] This pull request is ready to be reviewed
[x] Make sure your branch is up-to-date with main branch. See below a general example if rebase is need.
git checkout main
git pull origin main
git checkout FEATURE_BRANCH
git rebase main
#git status
#edit conflicting files with your editor
#git rebase --continue
#git add .
git push --force origin FEATURE_BRANCH
Description
Fixes #35
Type of change
Please delete options accordingly to the description.
Suggested Checklist
CONTRIBUTING
docspre-commit run -a
pytest -sv tests
rebase
is need.