🎨 style(documentloaders.py): fix indentation and formatting issues

The changes in this commit are purely cosmetic. The indentation and formatting issues in the code have been fixed to improve readability and maintainability.
This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-06-21 16:18:11 -03:00
commit 860c36146e

View file

@ -81,12 +81,12 @@ class DocumentLoaderFrontNode(FrontendNode):
)
if self.template.type_name in {"DirectoryLoader"}:
self.template.add_field(
TemplateField(
field_type="str",
required=True,
show=True,
name="glob",
value="**/*.txt",
display_name="glob",
TemplateField(
field_type="str",
required=True,
show=True,
name="glob",
value="**/*.txt",
display_name="glob",
)
)
)