paleolimbot commented on code in PR #502:
URL: https://github.com/apache/arrow-nanoarrow/pull/502#discussion_r1631468357


##########
python/src/nanoarrow/_lib.pyx:
##########
@@ -1095,6 +1095,15 @@ cdef class CSchemaView:
     def storage_type_id(self):
         return self._schema_view.storage_type
 
+    @property
+    def storage_buffer_format(self):
+        if self._schema_view.type == NANOARROW_TYPE_DATE32:

Review Comment:
   ```suggestion
           if self.buffer_format is not None:
               return self.buffer_format
           elif self._schema_view.type == NANOARROW_TYPE_DATE32:
   ```
   
   Possibly?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to