From 7b97027f0878cd114899f8b3390e72b7c95cc894 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Thu, 18 Jun 2015 22:22:02 +0100 Subject: [PATCH] update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 99b0d3b7..07d3188c 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ pip install -e git+https://github.com/tqdm/tqdm.git#egg=master ```python def tqdm(iterable, desc=None, total=None, leave=False, file=sys.stderr, - ncols=None, mininterval=0.1, miniters=None, ascii=False): + ncols=None, mininterval=0.1, miniters=None, ascii=None): """ Decorate an iterable object, returning an iterator which acts exactly like the orignal iterable, but prints a dynamically updating @@ -64,8 +64,8 @@ def tqdm(iterable, desc=None, total=None, leave=False, file=sys.stderr, miniters : int, optional Minimum progress update interval, in iterations [default: None]. ascii : bool, optional - Whether to only fill the meter with ASCII characters (1-9 #). - If not set, use unicode (▏▎▋█ █) [default: False]. + If not set, use unicode (▏▎▋█ █) to fill the meter + [default: False]. The fallback is to use ASCII characters (1-9 #). Returns -------