10 lines
296 B
Python
10 lines
296 B
Python
# pyflyby/__main__.py
|
|
# Copyright (C) 2014, 2015 Karl Chen.
|
|
# License: MIT http://opensource.org/licenses/MIT
|
|
|
|
from __future__ import (absolute_import, division, print_function,
|
|
with_statement)
|
|
|
|
if __name__ == "__main__":
|
|
from pyflyby._py import py_main
|
|
py_main()
|