OpenCyphal / pycyphal

Python implementation of the Cyphal protocol stack.
https://pycyphal.readthedocs.io/
MIT License
119 stars 106 forks source link

Addreqtxt #152

Closed mdob28 closed 3 years ago

mdob28 commented 3 years ago

Hello, i have switched to the latest branch.

coveralls commented 3 years ago

Pull Request Test Coverage Report for Build 37724240


Totals Coverage Status
Change from base Build 37712637: 0.0%
Covered Lines: 11719
Relevant Lines: 12133

💛 - Coveralls
pavel-kirienko commented 3 years ago

wasn´t able to do a rebase, so i created a new one

Git can be tricky sometimes. For your future reference, in this specific case you could do it as follows:

git reset --hard HEAD~1  # Rollback the unnecessary commit that you pulled into your branch from master
git remote add upstream https://github.com/UAVCAN/pyuavcan
git rebase upstream/master  # Do the rebase
git push --force  # Overwrite your history before rebase

I also bumped the version number as requested in the old PR.