Skip to content

Commit 7a33614

Browse files
committed
Version 0.1.6.
Bug fixed.
1 parent 6399dd1 commit 7a33614

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

leads_vec/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
parser = _ArgumentParser(prog="LEADS",
88
description="Lightweight Embedded Assisted Driving System",
99
epilog="GitHub: https://github.com/ProjectNeura/LEADS")
10-
parser.add_argument("-c", "--config", nargs=1, default=None, help="configuration file")
10+
parser.add_argument("-c", "--config", default=None, help="configuration file")
1111
try:
1212
from leads_emulation import SRWRandom as _Controller
1313
except ImportError:

leads_vec/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__: str = "8bb97ad7"
1+
__version__: str = "6399dd1f"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="leads",
8-
version="0.1.5",
8+
version="0.1.6",
99
author="ProjectNeura",
1010
author_email="[email protected]",
1111
description="Lightweight Embedded Assisted Driving System",

0 commit comments

Comments
 (0)