mirror of
https://github.com/Ladebeze66/ft_linear_regression.git
synced 2025-12-15 13:46:48 +01:00
9 lines
246 B
Python
9 lines
246 B
Python
#!/home/fgras-ca/ft_line_reg/ftline/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from fontTools.__main__ import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|