Skip to content

Commit

Permalink
Version 0.1.6.
Browse files Browse the repository at this point in the history
Bug fixed.
  • Loading branch information
ATATC committed Dec 30, 2023
1 parent 6399dd1 commit 7a33614
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion leads_vec/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
parser = _ArgumentParser(prog="LEADS",
description="Lightweight Embedded Assisted Driving System",
epilog="GitHub: https://github.com/ProjectNeura/LEADS")
parser.add_argument("-c", "--config", nargs=1, default=None, help="configuration file")
parser.add_argument("-c", "--config", default=None, help="configuration file")
try:
from leads_emulation import SRWRandom as _Controller
except ImportError:
Expand Down
2 changes: 1 addition & 1 deletion leads_vec/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__: str = "8bb97ad7"
__version__: str = "6399dd1f"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="leads",
version="0.1.5",
version="0.1.6",
author="ProjectNeura",
author_email="[email protected]",
description="Lightweight Embedded Assisted Driving System",
Expand Down

0 comments on commit 7a33614

Please sign in to comment.