We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The shebang line at the top of https://github.com/pandas-dev/pandas/blob/master/pandas/tests/io/generate_legacy_storage_files.py#L1 has an incorrect interpreter.
It is currently set to /usr/env/bin python
/usr/env/bin python
The interpreter should instead be set to /usr/bin/env python
/usr/bin/env python
The text was updated successfully, but these errors were encountered:
I noticed this appearing in lintian warning output while packaging a python application with dh-virtualenv.
Sorry, something went wrong.
TST: fix shebang typo (#21307)
cbec58e
Fix shebang typo in generate_legacy_storage_files.py closes #21306
TST: fix shebang typo (pandas-dev#21307)
90a1c3f
Fix shebang typo in generate_legacy_storage_files.py closes pandas-dev#21306
Successfully merging a pull request may close this issue.
Problem description
The shebang line at the top of https://github.com/pandas-dev/pandas/blob/master/pandas/tests/io/generate_legacy_storage_files.py#L1 has an incorrect interpreter.
It is currently set to
/usr/env/bin python
Expected Output
The interpreter should instead be set to
/usr/bin/env python
The text was updated successfully, but these errors were encountered: