mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 19:20:10 -07:00
7 lines
135 B
Python
Executable File
7 lines
135 B
Python
Executable File
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
import sys
|
|
from gpep517.__main__ import main
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|