Exemple #1
0
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Provides backwards compatibility for calling gam as a single .py file"""

import sys

from gam.__main__ import main

# Run from command line
if __name__ == '__main__':
    main(sys.argv)
Exemple #2
0
#!/usr/bin/env python3
"""Provides backwards compatibility for calling gam as a single .py file"""

import sys

from gam.__main__ import main

# Run from command line
if __name__ == '__main__':
    main()