Skip to content

Commit

Permalink
correct number of samples taken
Browse files Browse the repository at this point in the history
  • Loading branch information
kootenpv committed Oct 20, 2017
1 parent dfa5f32 commit 4ca60f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion whereami/__main__.py
Expand Up @@ -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')

Expand Down

0 comments on commit 4ca60f1

Please sign in to comment.