mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-10 15:51:51 +08:00
13 lines
231 B
Python
13 lines
231 B
Python
#!/usr/bin/python
|
|
|
|
import sys
|
|
sys.path[0:0] = [
|
|
'/usr/lib/python3.8/site-packages',
|
|
'/tmp/.buildout/eggs/important_package.egg'
|
|
]
|
|
|
|
import important_package
|
|
|
|
if __name__ == '__main__':
|
|
sys.exit(important_package.main())
|