Skip to content

Commit

Permalink
Fix a typo in sample RTF plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
rickygao authored Feb 11, 2025
1 parent 4b62506 commit 64d8bdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class RtfConverter(DocumentConverter):
"""

def convert(self, local_path, **kwargs) -> Union[None, DocumentConverterResult]:
# Bail if not a DOCX
# Bail if not a RTF
extension = kwargs.get("file_extension", "")
if extension.lower() != ".rtf":
return None
Expand Down

0 comments on commit 64d8bdc

Please sign in to comment.