@@ -473,120 +473,105 @@ def __new__(
473473 cls ,
474474 * args : JoinablePathLike ,
475475 protocol : Literal ["simplecache" ],
476- chain_parser : FSSpecChainParser = ...,
477- ** storage_options : Any ,
476+ ** _ : Any ,
478477 ) -> _uimpl .cached .SimpleCachePath : ...
479478 @overload # noqa: E301
480479 def __new__ (
481480 cls ,
482481 * args : JoinablePathLike ,
483482 protocol : Literal ["gcs" , "gs" ],
484- chain_parser : FSSpecChainParser = ...,
485- ** storage_options : Any ,
483+ ** _ : Any ,
486484 ) -> _uimpl .cloud .GCSPath : ...
487485 @overload # noqa: E301
488486 def __new__ (
489487 cls ,
490488 * args : JoinablePathLike ,
491489 protocol : Literal ["s3" , "s3a" ],
492- chain_parser : FSSpecChainParser = ...,
493- ** storage_options : Any ,
490+ ** _ : Any ,
494491 ) -> _uimpl .cloud .S3Path : ...
495492 @overload # noqa: E301
496493 def __new__ (
497494 cls ,
498495 * args : JoinablePathLike ,
499496 protocol : Literal ["az" , "abfs" , "abfss" , "adl" ],
500- chain_parser : FSSpecChainParser = ...,
501- ** storage_options : Any ,
497+ ** _ : Any ,
502498 ) -> _uimpl .cloud .AzurePath : ...
503499 @overload # noqa: E301
504500 def __new__ (
505501 cls ,
506502 * args : JoinablePathLike ,
507503 protocol : Literal ["data" ],
508- chain_parser : FSSpecChainParser = ...,
509- ** storage_options : Any ,
504+ ** _ : Any ,
510505 ) -> _uimpl .data .DataPath : ...
511506 @overload # noqa: E301
512507 def __new__ (
513508 cls ,
514509 * args : JoinablePathLike ,
515510 protocol : Literal ["github" ],
516- chain_parser : FSSpecChainParser = ...,
517- ** storage_options : Any ,
511+ ** _ : Any ,
518512 ) -> _uimpl .github .GitHubPath : ...
519513 @overload # noqa: E301
520514 def __new__ (
521515 cls ,
522516 * args : JoinablePathLike ,
523517 protocol : Literal ["hdfs" ],
524- chain_parser : FSSpecChainParser = ...,
525- ** storage_options : Any ,
518+ ** _ : Any ,
526519 ) -> _uimpl .hdfs .HDFSPath : ...
527520 @overload # noqa: E301
528521 def __new__ (
529522 cls ,
530523 * args : JoinablePathLike ,
531524 protocol : Literal ["http" , "https" ],
532- chain_parser : FSSpecChainParser = ...,
533- ** storage_options : Any ,
525+ ** _ : Any ,
534526 ) -> _uimpl .http .HTTPPath : ...
535527 @overload # noqa: E301
536528 def __new__ (
537529 cls ,
538530 * args : JoinablePathLike ,
539531 protocol : Literal ["file" , "local" ],
540- chain_parser : FSSpecChainParser = ...,
541- ** storage_options : Any ,
532+ ** _ : Any ,
542533 ) -> _uimpl .local .FilePath : ...
543534 @overload # noqa: E301
544535 def __new__ (
545536 cls ,
546537 * args : JoinablePathLike ,
547538 protocol : Literal ["memory" ],
548- chain_parser : FSSpecChainParser = ...,
549- ** storage_options : Any ,
539+ ** _ : Any ,
550540 ) -> _uimpl .memory .MemoryPath : ...
551541 @overload # noqa: E301
552542 def __new__ (
553543 cls ,
554544 * args : JoinablePathLike ,
555545 protocol : Literal ["sftp" , "ssh" ],
556- chain_parser : FSSpecChainParser = ...,
557- ** storage_options : Any ,
546+ ** _ : Any ,
558547 ) -> _uimpl .sftp .SFTPPath : ...
559548 @overload # noqa: E301
560549 def __new__ (
561550 cls ,
562551 * args : JoinablePathLike ,
563552 protocol : Literal ["smb" ],
564- chain_parser : FSSpecChainParser = ...,
565- ** storage_options : Any ,
553+ ** _ : Any ,
566554 ) -> _uimpl .smb .SMBPath : ...
567555 @overload # noqa: E301
568556 def __new__ (
569557 cls ,
570558 * args : JoinablePathLike ,
571559 protocol : Literal ["tar" ],
572- chain_parser : FSSpecChainParser = ...,
573- ** storage_options : Any ,
560+ ** _ : Any ,
574561 ) -> _uimpl .tar .TarPath : ...
575562 @overload # noqa: E301
576563 def __new__ (
577564 cls ,
578565 * args : JoinablePathLike ,
579566 protocol : Literal ["webdav" ],
580- chain_parser : FSSpecChainParser = ...,
581- ** storage_options : Any ,
567+ ** _ : Any ,
582568 ) -> _uimpl .webdav .WebdavPath : ...
583569 @overload # noqa: E301
584570 def __new__ (
585571 cls ,
586572 * args : JoinablePathLike ,
587573 protocol : Literal ["zip" ],
588- chain_parser : FSSpecChainParser = ...,
589- ** storage_options : Any ,
574+ ** _ : Any ,
590575 ) -> _uimpl .zip .ZipPath : ...
591576
592577 if sys .platform == "win32" :
@@ -596,8 +581,7 @@ def __new__(
596581 cls ,
597582 * args : JoinablePathLike ,
598583 protocol : Literal ["" ],
599- chain_parser : FSSpecChainParser = ...,
600- ** storage_options : Any ,
584+ ** _ : Any ,
601585 ) -> _uimpl .local .WindowsUPath : ...
602586
603587 else :
@@ -607,17 +591,15 @@ def __new__(
607591 cls ,
608592 * args : JoinablePathLike ,
609593 protocol : Literal ["" ],
610- chain_parser : FSSpecChainParser = ...,
611- ** storage_options : Any ,
594+ ** _ : Any ,
612595 ) -> _uimpl .local .PosixUPath : ...
613596
614597 @overload # noqa: E301
615598 def __new__ (
616599 cls ,
617600 * args : JoinablePathLike ,
618601 protocol : str | None = ...,
619- chain_parser : FSSpecChainParser = ...,
620- ** storage_options : Any ,
602+ ** _ : Any ,
621603 ) -> Self : ...
622604
623605 def __new__ (
0 commit comments