Describe the enhancement requested
As noted in #44070 (comment) - it would be nice if we could shorten:
storage = pa.array(data, type=storage_type)
extension_type = pa.some_extension_type(storage_type)
array = pa.ExtensionArray.from_storage(extension_type, storage)
to:
extension_type = pa.some_extension_type(storage_type)
array = pa.array(data, extension_type)
Component(s)
Python