support/testing: sample_python_pybind.py: use python3 shebang

No functional change as we install a python symlink, but use python3 for
consistency with the other scripts.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
This commit is contained in:
Peter Korsgaard 2024-06-04 20:41:27 +02:00 committed by Arnout Vandecappelle
parent 90167378de
commit ed9288505c

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
import example
print(example.add(1, 2))
print(example.says)