Skip to content

Commit

Permalink
Fix broken pyre in CI (#788)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiukchung authored Nov 3, 2023
1 parent fb819df commit fe6354d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion torchx/test/minio.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ class MinioFS(s3fs.S3FileSystem):
tests in minikube.
"""

protocol = ["torchx_minio", "s3", "s3a"]
# pyre-ignore[15] declared in fsspec.spec.AbstractFileSystem.protocol as ClassVar[str | tuple[str, ...]]
protocol = ("torchx_minio", "s3", "s3a")

def __init__(self, *args: object, **kwargs: object) -> None:
super().__init__(
Expand Down

0 comments on commit fe6354d

Please sign in to comment.