Skip to content

Commit 476e216

Browse files
committed
Whitespaces
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
1 parent 17f6eae commit 476e216

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bpython/config.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,13 @@ def can_encode(c):
3232

3333
def supports_box_chars():
3434
"""Check if the encoding suppors Unicode box characters."""
35-
return all(map( can_encode, u'│─└┘┌┐'))
35+
return all(map(can_encode, u'│─└┘┌┐'))
3636

3737
def get_config_home():
3838
"""Returns the base directory for bpython's configuration files."""
3939
xdg_config_home = os.environ.get('XDG_CONFIG_HOME', '~/.config')
4040
return os.path.join(xdg_config_home, 'bpython')
4141

42-
4342
def default_config_path():
4443
"""Returns bpython's default configuration file path."""
4544
return os.path.join(get_config_home(), 'config')

0 commit comments

Comments
 (0)