Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bsmartradio committed Aug 23, 2024
1 parent 9188ccf commit d8eabc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/alert/packet/schemaRegistry.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def register_schema(self, schema, version):
"""
schema_id = schema.get_schema_id()
self._version_to_id[version] = schema_id
self._ids[schema_id] = schema_id
self._ids.append(schema_id)
self._id_to_schema[schema_id] = schema
return schema_id

Expand Down

0 comments on commit d8eabc5

Please sign in to comment.