We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c6487 commit a3e07f0Copy full SHA for a3e07f0
pins/rsconnect/fs.py
@@ -1,6 +1,8 @@
1
from dataclasses import dataclass, asdict, field, fields
2
from pathlib import Path
3
4
+from fsspec import AbstractFileSystem
5
+
6
from typing import Sequence
7
8
from .api import (
@@ -93,7 +95,7 @@ class BundleFilePath(BundlePath):
93
95
file_name: str
94
96
97
-class RsConnectFs:
98
+class RsConnectFs(AbstractFileSystem):
99
protocol: str = "rsc"
100
101
def __init__(self, server_url, **kwargs):
0 commit comments