Open paul-civitas opened 2 years ago
#!/usr/bin/python3 isn't good practice Use #!/usr/bin/env python3 instead
#!/usr/bin/python3
#!/usr/bin/env python3
The way it's currently written screws things up if you try and use a venv or asdf.
#!/usr/bin/python3
isn't good practice Use#!/usr/bin/env python3
insteadThe way it's currently written screws things up if you try and use a venv or asdf.