Removed manual user_id fallback in data processing
This commit is contained in:
esk4nz
2026-03-23 23:00:19 +02:00
parent b10aec1020
commit ad70519f47

View File

@@ -13,10 +13,6 @@ def process_agent_data(
processed_data_batch (ProcessedAgentData): Processed data containing the classified state of the road surface and agent data.
"""
# Implement it
if not hasattr(agent_data, 'user_id') or agent_data.user_id is None:
agent_data.user_id = 1
return ProcessedAgentData(
road_state="normal",
agent_data=agent_data