Remove useless shebangs in non-executable files (#2161)

Such shebangs are only ever used if the file is executed directly, i.e.:

    $ /usr/lib/python3.9/site-packages/black_primer/cli.py

But that doesn't work:

    $ /usr/lib/python3.9/site-packages/black_primer/cli.py
    bash: /usr/lib/python3.9/site-packages/black_primer/cli.py: Permission denied

The lib file even has: "lib is a library, funnily enough"
This commit is contained in:
Miro Hrončok 2021-04-28 16:07:15 +02:00 committed by GitHub
parent 04fd4432f6
commit 89a856d742
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 4 deletions

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
# coding=utf8
import asyncio

View File

@ -1,5 +1,3 @@
#!/usr/bin/env python3
import asyncio
import errno
import json