Skip to content

Commit

Permalink
We changed != to == when checking datakeys
Browse files Browse the repository at this point in the history
  • Loading branch information
evalott100 committed Jul 12, 2023
1 parent 507d5b1 commit e011ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion event_model/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2306,7 +2306,7 @@ def keys_without_stream_keys(dictionary, descriptor_data_keys):
return [
key for key in dictionary.keys() if (
"external" not in descriptor_data_keys[key] or
descriptor_data_keys[key]["external"] != "STREAM:"
descriptor_data_keys[key]["external"] == "STREAM:"
)
]

Expand Down

0 comments on commit e011ca7

Please sign in to comment.