chore: cleanup comments

3clyp50 committed Jan 6, 2026 at 19:22 UTC a96c03587f122bc18e841809aeb2fff7e8c2b7f9
1 file changed +6 -6
python/helpers/log.py
+6 -6
@@ -132,9 +132,9 @@ class LogItem:
132 kvps: Optional[OrderedDict] = None # Use OrderedDict for kvps
133 id: Optional[str] = None # Add id field
134 guid: str = ""
135 - timestamp: float = 0.0 # Unix timestamp in seconds
136 - duration_ms: Optional[int] = None # Duration until next step (set by Log.log)
137 - agent_number: int = 0 # Agent number (0 = main agent, 1+ = subordinate agents)
135 + timestamp: float = 0.0
136 + duration_ms: Optional[int] = None
137 + agent_number: int = 0
138
139 def __post_init__(self):
140 self.guid = self.guid or self.log.guid
@@ -186,9 +186,9 @@ class LogItem:
186 "content": self.content,
187 "temp": self.temp,
188 "kvps": self.kvps,
189 - "timestamp": self.timestamp, # Unix timestamp in seconds
190 - "duration_ms": self.duration_ms, # Duration until next step
191 - "agent_number": self.agent_number, # Agent number for identifying main/subordinate agents
189 + "timestamp": self.timestamp,
190 + "duration_ms": self.duration_ms,
191 + "agent_number": self.agent_number,
192 }
193
194