You've already forked httpie-cli
mirror of
https://github.com/httpie/cli.git
synced 2025-08-10 22:42:05 +02:00
Rework __main__.py
to follow best practices (#1124)
It also simplifies how the `main()` function could be tested.
This commit is contained in:
committed by
GitHub
parent
c50e287c57
commit
4ff22defe4
@@ -1,7 +1,6 @@
|
||||
"""The main entry point. Invoke as `http' or `python -m httpie'.
|
||||
|
||||
"""
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
@@ -12,8 +11,9 @@ def main():
|
||||
from httpie.status import ExitStatus
|
||||
exit_status = ExitStatus.ERROR_CTRL_C
|
||||
|
||||
sys.exit(exit_status.value)
|
||||
return exit_status.value
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
if __name__ == '__main__': # pragma: nocover
|
||||
import sys
|
||||
sys.exit(main())
|
||||
|
Reference in New Issue
Block a user