Initial commit
This commit is contained in:
12
venv/bin/autopep8
Executable file
12
venv/bin/autopep8
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/home/lukedixon/Projects/DuplicatesFinder/venv/bin/python3
|
||||
# EASY-INSTALL-ENTRY-SCRIPT: 'autopep8==1.4.4','console_scripts','autopep8'
|
||||
__requires__ = 'autopep8==1.4.4'
|
||||
import re
|
||||
import sys
|
||||
from pkg_resources import load_entry_point
|
||||
|
||||
if __name__ == '__main__':
|
||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||
sys.exit(
|
||||
load_entry_point('autopep8==1.4.4', 'console_scripts', 'autopep8')()
|
||||
)
|
||||
Reference in New Issue
Block a user