mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-06 09:20:57 +01:00
removed lazyobject from _XONFIG_SOURCE_FOREIGN_SHELL_COMMAND
This commit is contained in:
parent
23428c1fdb
commit
ca417007cc
1 changed files with 6 additions and 7 deletions
|
@ -112,13 +112,12 @@ WIZARD_TAIL = """
|
|||
Thanks for using the xonsh configuration wizard!"""
|
||||
|
||||
|
||||
@lazyobject
|
||||
def _XONFIG_SOURCE_FOREIGN_SHELL_COMMAND():
|
||||
return collections.defaultdict(lambda: 'source-foreign',
|
||||
bash='source-bash',
|
||||
cmd='source-cmd',
|
||||
zsh='source-zsh',
|
||||
)
|
||||
_XONFIG_SOURCE_FOREIGN_SHELL_COMMAND = collections.defaultdict(
|
||||
lambda: 'source-foreign',
|
||||
bash='source-bash',
|
||||
cmd='source-cmd',
|
||||
zsh='source-zsh',
|
||||
)
|
||||
|
||||
|
||||
def _dump_xonfig_foreign_shell(path, value):
|
||||
|
|
Loading…
Add table
Reference in a new issue