Skip to content

Commit a93771c

Browse files
Remove unnecessary type ignore comments
1 parent ea196ea commit a93771c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/pdfrest/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1585,7 +1585,7 @@ def create_from_urls(
15851585
) -> list[PdfRestFile]:
15861586
"""Upload one or more files by providing remote URLs."""
15871587

1588-
normalized_urls = UploadURLs.model_validate({"url": urls}) # pyright: ignore[reportPrivateUsage]
1588+
normalized_urls = UploadURLs.model_validate({"url": urls})
15891589
request = self._client.prepare_request(
15901590
"POST",
15911591
"/upload",

0 commit comments

Comments
 (0)