1
0
Fork 0

trivial modification of all shebang.

`/usr/bin/python3` -> `/usr/bin/env python3`

It's always better to trust the environment defined path to bin/python, as
virtualenv become the way to go.
This commit is contained in:
Yoann Lamouroux 2018-09-11 15:54:53 +02:00 committed by jvoisin
parent 5cf94bd256
commit 0a2a398c9c
4 changed files with 4 additions and 4 deletions

2
mat2
View File

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
import os
from typing import Tuple

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
import unittest
import shutil

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
import unittest
import shutil

View File

@ -1,4 +1,4 @@
#!/usr/bin/python3
#!/usr/bin/env python3
import unittest
import shutil