Skip to content

Commit

Permalink
fix importlib import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Sweetnow committed Jun 2, 2024
1 parent 5c73663 commit 9e27667
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "python-moss"
version = "0.3.2"
version = "0.3.3"
description = "MObility Simulation System"
authors = [
{ name = "Wenxuan Ao", email = "[email protected]" },
Expand Down
4 changes: 3 additions & 1 deletion python/src/moss/engine.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import importlib
import importlib.machinery
import importlib.util
import json
import os
import pickle
Expand Down Expand Up @@ -141,7 +143,7 @@ def __init__(
lane_change: LaneChange = LaneChange.SUMO,
mobil_lc_forbidden_distance: float = 15,
lane_veh_add_buffer_size: int = 1000,
lane_veh_remove_buffer_size: int = 300,
lane_veh_remove_buffer_size: int = 1000,
speed_stat_interval=0,
device: int = 0,
):
Expand Down

0 comments on commit 9e27667

Please sign in to comment.