Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Missing Shebang Lines #1

Open
schackartk opened this issue Apr 19, 2021 · 0 comments · May be fixed by #4
Open

Missing Shebang Lines #1

schackartk opened this issue Apr 19, 2021 · 0 comments · May be fixed by #4

Comments

@schackartk
Copy link

Both of the executable files (i.e. train.py and test.py) do not have a shebang line. While is it not critical
that a shebang line be included, it may be advisable unless there is some reason for not including it.

This could be easily resolved by making the first line of those files:
#!/usr/bin/env python3
With that, users would no longer need to run $ python3 train.py, but could just execute using $ ./train.py. Also, it makes it explicit that the script is to be run with Python 3 instead of Python 2.

paoloo added a commit to paoloo/RNN-VirSeeker that referenced this issue Dec 20, 2021
@paoloo paoloo linked a pull request Dec 20, 2021 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant