From 4ca60f1062624693f2395ce11ae24bea73455bd3 Mon Sep 17 00:00:00 2001 From: Pascal van Kooten Date: Fri, 20 Oct 2017 17:12:43 +0200 Subject: [PATCH] correct number of samples taken --- setup.py | 2 +- whereami/__init__.py | 2 +- whereami/__main__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index dc2d5a1..f7f0f5b 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ MAJOR_VERSION = '0' MINOR_VERSION = '4' -MICRO_VERSION = '77' +MICRO_VERSION = '79' VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION) setup(name='whereami', diff --git a/whereami/__init__.py b/whereami/__init__.py index 9306706..1ac4713 100644 --- a/whereami/__init__.py +++ b/whereami/__init__.py @@ -1,7 +1,7 @@ import sys __project__ = "whereami" -__version__ = "0.4.77" +__version__ = "0.4.79" __repo__ = "https://github.com/kootenpv/whereami" from whereami.learn import learn diff --git a/whereami/__main__.py b/whereami/__main__.py index a022d06..cacf622 100644 --- a/whereami/__main__.py +++ b/whereami/__main__.py @@ -53,7 +53,7 @@ def get_args_parser(): learn_parser.add_argument('--device', '-d', default="", help='Change the wifi device to use') learn_parser.add_argument('--num_samples', '-n', type=int, - default=100, help='Number of samples to take') + default=1, help='Number of samples to take') rename = subparsers.add_parser('rename')