formatting

This commit is contained in:
Josh Hawkins 2026-03-29 12:30:59 -05:00
parent 2109c53010
commit 83c10e3647

View File

@ -96,9 +96,7 @@ class StatsEmitter(threading.Thread):
if isinstance(first_value, dict):
# Filter each nested entry to only requested fields
selected[parent_key] = {
entry_key: {
field: entry.get(field) for field in child_keys
}
entry_key: {field: entry.get(field) for field in child_keys}
for entry_key, entry in parent.items()
}
else: