jorisvandenbossche commented on PR #34616:
URL: https://github.com/apache/arrow/pull/34616#issuecomment-1755671044
@tolleybot there are some linting errors to fix:
```pyhton
--- original//arrow/python/pyarrow/_dataset_parquet.pyx
+++ fixed//arrow/python/pyarrow/_dataset_parquet.pyx
@@ -786,10 +786,10 @@
@property
def parquet_decryption_config(self):
if not parquet_encryption_enabled:
- raise NotImplementedError(
- "Unable to access encryption features. "
- "Encryption is not enabled in your installation of pyarrow."
- )
+ raise NotImplementedError(
+ "Unable to access encryption features. "
+ "Encryption is not enabled in your installation of pyarrow."
+ )
return self._parquet_decryption_config
@parquet_decryption_config.setter
--- original//arrow/python/pyarrow/_dataset_parquet_encryption.pyx
+++ fixed//arrow/python/pyarrow/_dataset_parquet_encryption.pyx
@@ -58,7 +58,7 @@
__slots__ = ()
def __cinit__(self, CryptoFactory crypto_factory, KmsConnectionConfig
kms_connection_config,
- EncryptionConfiguration encryption_config):
+ EncryptionConfiguration encryption_config):
cdef shared_ptr[CEncryptionConfiguration] c_encryption_config
@@ -126,7 +126,7 @@
__slots__ = ()
def __cinit__(self, CryptoFactory crypto_factory, KmsConnectionConfig
kms_connection_config,
- DecryptionConfiguration decryption_config):
+ DecryptionConfiguration decryption_config):
cdef shared_ptr[CDecryptionConfiguration] c_decryption_config
```
--
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]