Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Wrapping/Generators/Python/itk/support/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def initialize_c_types_once() -> (
_SS: "itkCType" = itkCType("signed short", "SS", np.dtype(np.int16))
_SI: "itkCType" = itkCType("signed int", "SI", np.dtype(np.int32))
_SLL: "itkCType" = itkCType("signed long long", "SLL", np.dtype(np.int64))
_B: "itkCType" = itkCType("bool", "B", np.dtype(np.bool))
_B: "itkCType" = itkCType("bool", "B", np.dtype(np.bool_))
return _F, _D, _UC, _US, _UI, _UL, _SL, _LD, _ULL, _SC, _SS, _SI, _SLL, _B


Expand Down
Loading