You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When there is trailing data in a frame an ValueError is raised. But we should only log a warning.
types/commands.py:from_frame
else:
# Otherwise, let the exception happen
raise
if data:
raise ValueError(
f"Frame {frame} contains trailing data after parsing: {data}"
)
return cls(**params)
The text was updated successfully, but these errors were encountered:
DamKast
changed the title
fix trailing data raise
fix trailing data exception
Dec 11, 2024
When there is trailing data in a frame an ValueError is raised. But we should only log a warning.
types/commands.py:from_frame
The text was updated successfully, but these errors were encountered: