some flake8 fixes

This commit is contained in:
Anthony Scopatz 2016-07-28 12:17:43 -04:00
parent e7647a644b
commit 59e3eeab0d
4 changed files with 2 additions and 4 deletions

View file

@ -120,8 +120,7 @@ def completer_alias(args, stdin=None):
func = _list_completers
return func(args[1:], stdin=stdin)
COMPLETER_LIST_HELP_STR = \
"""completer list: list the active completers, in order
COMPLETER_LIST_HELP_STR = """completer list: ordered list the active completers
Usage:
completer remove

View file

@ -1,5 +1,4 @@
import os
import re
import ast
import builtins

View file

@ -256,4 +256,3 @@ def main_context(argv=None):
args = premain(argv)
yield builtins.__xonsh_shell__
postmain(args)

View file

@ -247,6 +247,7 @@ def windows_bash_command():
# Environment variables defaults
#
@functools.lru_cache(1)
def bash_command():
"""Determines the command for Bash on the current plaform."""