@@ -424,13 +424,13 @@ cdef class CryptoFactory(_Weakrefable):
424424 encryption_config : EncryptionConfiguration
425425 Configuration of the encryption, such as which columns to encrypt
426426
427- parquet_file_path : str, pathlib.Path or None, default None
427+ parquet_file_path : str, pathlib.Path, or None, default None
428428 Path to the parquet file to be encrypted. Only required when the
429429 internal_key_material attribute of EncryptionConfiguration is set
430430 to False. Used to derive the path for storing key material
431431 specific to this parquet file.
432432
433- filesystem : FileSystem, default None
433+ filesystem : FileSystem or None , default None
434434 Used only when internal_key_material is set to False on
435435 EncryptionConfiguration. If None, the file system will be inferred
436436 based on parquet_file_path.
@@ -481,12 +481,12 @@ cdef class CryptoFactory(_Weakrefable):
481481 Configuration of the decryption, such as cache timeout.
482482 Can be None.
483483
484- parquet_file_path : str, pathlib.Path or None, default None
484+ parquet_file_path : str, pathlib.Path, or None, default None
485485 Path to the parquet file to be decrypted. Only required when
486486 the parquet file uses external key material. Used to derive
487487 the path to the external key material file.
488488
489- filesystem : FileSystem, default None
489+ filesystem : FileSystem or None , default None
490490 Used only when the parquet file uses external key material. If
491491 None, the file system will be inferred based on parquet_file_path.
492492
@@ -547,7 +547,7 @@ cdef class CryptoFactory(_Weakrefable):
547547 parquet_file_path : str or pathlib.Path
548548 Path to a parquet file using external key material.
549549
550- filesystem : FileSystem, default None
550+ filesystem : FileSystem or None , default None
551551 Used only when the parquet file uses external key material. If
552552 None, the file system will be inferred based on parquet_file_path.
553553
0 commit comments