- We encountered below error: ```[rank1]: File "/proj/data-eng/granite_docling/fms-fsdp/fms_fsdp/utils/dataset_utils.py", line 928, in <listcomp> [rank1]: if self.filehandler.is_legal(os.path.join(root, name)) [rank1]: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [rank1]: TypeError: ArrowHandler.is_legal() missing 1 required positional argument: 'filepath' ``` - The root cause seems to be at this [line](https://github.com/foundation-model-stack/fms-fsdp/blob/23a9e39fd7f83b46bf27cfbf5e09143514f8c7eb/fms_fsdp/utils/dataloader_utils.py#L92) which is NOT a class instance. So the simple fix is to add bracket at the end like this: ```python filehandler = _handler_map[cfg.file_type]() ```