Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
from pyb import Switch
sw = Switch()
print(sw())
sw.callback(print)
sw.callback(None)