1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 12:07:46 +00:00

Merge pull request #6098 from thesayfulla/main

added shebang to run python scripts
This commit is contained in:
Sylvestre Ledru 2024-03-20 17:50:41 +01:00 committed by GitHub
commit ee1740e78d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -1,4 +1,4 @@
#! /usr/bin/python #!/usr/bin/env python3
""" """
Compare the current results to the last results gathered from the main branch to highlight Compare the current results to the last results gathered from the main branch to highlight

View file

@ -1,3 +1,4 @@
#!/usr/bin/env python3
# spell-checker:ignore debuginfo # spell-checker:ignore debuginfo
import subprocess import subprocess
from itertools import product from itertools import product