mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-06 01:05:48 +02:00
Follow PEP 0394 and use /usr/bin/env python so that the python in the users venv is respected. Not that the kitty python files are meant to be executed standalone anyway, but, whatever. Fixes #6810
8 lines
175 B
Python
8 lines
175 B
Python
#!/usr/bin/env python
|
|
# License: GPL v3 Copyright: 2015, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from kitty.entry_points import main
|
|
main()
|