Gitiles
Code Review
Sign In
git.clicks.codes
/
Clicks
/
Forks
/
ERPNext
/
a579a211fd2ad10ce08157c447d0e81988a68dce
/
.
/
erpnext
/
commands
/
__init__.py
blob: 8e12fad3d75639153967f69de61a3a91d925f6e6 [
file
] [
log
] [
blame
]
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
# GPL v3 License. See license.txt
import
click
def
call_command
(
cmd
,
context
):
return
click
.
Context
(
cmd
,
obj
=
context
).
forward
(
cmd
)
commands
=
[]