mirror of
https://github.com/GSA/notifications-api.git
synced 2026-09-05 16:18:26 -04:00
9 lines
256 B
Python
Executable File
9 lines
256 B
Python
Executable File
#!/Users/jamesdmoffet/notifications-api/.venv/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from piptools.scripts.sync import cli
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(cli())
|