Skip to content

Commit

Permalink
Bug fixed: Controller is undefined in leads_emulation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ATATC committed Nov 28, 2023
1 parent 0378228 commit cb85848
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions leads_vec/__main__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from sys import argv as _argv, exit as _exit


if __name__ == '__main__':
try:
from leads_emulation import Random as Controller
from leads_emulation import SRWRandom as Controller
except ImportError:
raise EnvironmentError("At least one adapter has to be installed")
if "remote" in _argv:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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

0 comments on commit cb85848

Please sign in to comment.