Skip to content

Commit e3b034d

Browse files
Remove unnecessary type ignore comments
1 parent 09a35f1 commit e3b034d

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
@@ -1582,7 +1582,7 @@ def create_from_urls(
15821582
) -> list[PdfRestFile]:
15831583
"""Upload one or more files by providing remote URLs."""
15841584

1585-
normalized_urls = UploadURLs.model_validate({"url": urls}) # pyright: ignore[reportPrivateUsage]
1585+
normalized_urls = UploadURLs.model_validate({"url": urls})
15861586
request = self._client.prepare_request(
15871587
"POST",
15881588
"/upload",

0 commit comments

Comments
 (0)