Skip to content

Commit

Permalink
update bool check is_sim
Browse files Browse the repository at this point in the history
  • Loading branch information
adev4a committed Oct 18, 2023
1 parent 7368164 commit 5cc8178
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self):
self.exclusion_list = []

# Get is_sim env variable as boolean
self.is_sim = os.getenv("IS_SIM", 'False').lower() in ('true', '1', 't')
self.is_sim = os.getenv("IS_SIM", 'False').lower() in ('true', '1')

self.vehicle_info = {
UnitKeys.UNIT_ID.value: os.getenv("VEHICLE_BRIDGE_UNIT_ID"),
Expand Down

0 comments on commit 5cc8178

Please sign in to comment.