mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-05 17:00:58 +01:00
replace lists with tuples for keyword args
This commit is contained in:
parent
b6c221fd2a
commit
de1bde3b0e
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ class PromptToolkitShell(BaseShell):
|
|||
return get_tokens, custom_style
|
||||
|
||||
|
||||
def _xonsh_style(tokens=[], cstyles=[]):
|
||||
def _xonsh_style(tokens=tuple(), cstyles=tuple()):
|
||||
class XonshStyle(Style):
|
||||
styles = {
|
||||
Whitespace: "GRAY",
|
||||
|
|
Loading…
Add table
Reference in a new issue