Skip to content

Commit

Permalink
In field_info.py, remove support for null type for float and double.
Browse files Browse the repository at this point in the history
This is creating some issues with the rollout of the C++ library so we will remove it for now and implement it again in the future.
  • Loading branch information
tribeiro committed Jan 10, 2024
1 parent b4dbd91 commit fb9d0a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/ts/xml/field_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"long long": "long",
"unsigned short": "int",
"unsigned int": "long",
"float": ["float", "null"],
"double": ["double", "null"],
"float": "float",
"double": "double",
"string": "string",
}

Expand Down

0 comments on commit fb9d0a0

Please sign in to comment.