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:
parent
04fd4432f6
commit
89a856d742
@ -1,5 +1,3 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
# coding=utf8
|
||||
|
||||
import asyncio
|
||||
|
@ -1,5 +1,3 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import asyncio
|
||||
import errno
|
||||
import json
|
||||
|
Loading…
Reference in New Issue
Block a user