Change shebangs to execute python3 explicitly

This commit is contained in:
Eric Torres 2018-11-12 23:39:37 -08:00
parent dc22021648
commit fbb77d58c8
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
"""Write an ISO image to a usb drive using dd.""" """Write an ISO image to a usb drive using dd."""
import argparse import argparse

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
"""Download audio using youtube-dl, passing """Download audio using youtube-dl, passing
a specific set of options specified by the user. a specific set of options specified by the user.

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
"""Check the temperature of a drive. """Check the temperature of a drive.
Functions: Functions:
verify_device_node(query) verify_device_node(query)