MCPcopy
hub / github.com/encode/starlette / __init__

Method __init__

starlette/datastructures.py:487–492  ·  starlette/datastructures.py::FormData.__init__
(
        self,
        *args: FormData | Mapping[str, str | UploadFile] | list[tuple[str, str | UploadFile]],
        **kwargs: str | UploadFile,
    )

Source from the content-addressed store, hash-verified

485 class="st">"""
486
487 def __init__(
488 self,
489 *args: FormData | Mapping[str, str | UploadFile] | list[tuple[str, str | UploadFile]],
490 **kwargs: str | UploadFile,
491 ) -> None:
492 super().__init__(*args, **kwargs)
493
494 async def close(self) -> None:
495 for key, value in self.multi_items():

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected