Skip to content

Commit

Permalink
fix: StopSign Oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
YuqiHuai committed Jan 28, 2023
1 parent c4f9c51 commit fc3e860
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/oracles/impl/StopSignOracle.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ class StopSignOracle(OracleInterface):
# Apollo: virtual_obstacle_id = STOP_SIGN_VO_ID_PREFIX + stop_sign_overlap.object_id;
STOP_SIGN_VO_ID_PREFIX = "SS_"

checked = set()
checked: Set

def __init__(self):
self.violated_at_stop_sign_ids = set()

self.parse_stop_sign_stop_line_string_on_map(MapParser.get_instance())
self.reset_all_oracle_states()
self.checked = set()

def get_interested_topics(self):
"""
Expand Down

0 comments on commit fc3e860

Please sign in to comment.