Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
pitrou committed Dec 20, 2023
1 parent 54b0c1b commit 868daa1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions python/pyarrow/src/arrow/python/parquet_encryption.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ class ARROW_PYTHON_PARQUET_ENCRYPTION_EXPORT PyKmsClientVtable {
};

/// \brief A helper for KmsClient implementation in Python.
class ARROW_PYTHON_PARQUET_ENCRYPTION_EXPORT PyKmsClient : public ::parquet::encryption::KmsClient {
class ARROW_PYTHON_PARQUET_ENCRYPTION_EXPORT PyKmsClient
: public ::parquet::encryption::KmsClient {
public:
PyKmsClient(PyObject* handler, PyKmsClientVtable vtable);
~PyKmsClient() override;
Expand Down Expand Up @@ -107,7 +108,8 @@ class ARROW_PYTHON_PARQUET_ENCRYPTION_EXPORT PyKmsClientFactory
};

/// \brief A CryptoFactory that returns Results instead of throwing exceptions.
class ARROW_PYTHON_PARQUET_ENCRYPTION_EXPORT PyCryptoFactory : public ::parquet::encryption::CryptoFactory {
class ARROW_PYTHON_PARQUET_ENCRYPTION_EXPORT PyCryptoFactory
: public ::parquet::encryption::CryptoFactory {
public:
arrow::Result<std::shared_ptr<::parquet::FileEncryptionProperties>>
SafeGetFileEncryptionProperties(
Expand Down

0 comments on commit 868daa1

Please sign in to comment.