File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 18
18
19
19
__all__ = [
20
20
"AbstractFileSystem" ,
21
- "FSTimeoutError " ,
21
+ "Callback " ,
22
22
"FSMap" ,
23
+ "FSTimeoutError" ,
24
+ "available_compressions" ,
25
+ "available_protocols" ,
26
+ "caching" ,
23
27
"filesystem" ,
24
- "register_implementation" ,
25
28
"get_filesystem_class" ,
26
29
"get_fs_token_paths" ,
27
30
"get_mapper" ,
28
31
"open" ,
29
32
"open_files" ,
30
33
"open_local" ,
34
+ "register_implementation" ,
31
35
"registry" ,
32
- "caching" ,
33
- "Callback" ,
34
- "available_protocols" ,
35
- "available_compressions" ,
36
36
"url_to_fs" ,
37
37
]
38
38
Original file line number Diff line number Diff line change 4
4
import types
5
5
import warnings
6
6
7
- __all__ = ["registry " , "get_filesystem_class" , "default " ]
7
+ __all__ = ["default " , "get_filesystem_class" , "registry " ]
8
8
9
9
# internal, mutable
10
10
_registry : dict [str , type ] = {}
Original file line number Diff line number Diff line change @@ -181,6 +181,7 @@ select = [
181
181
" PYI" ,
182
182
" RUF006" ,
183
183
" RUF015" ,
184
+ " RUF022" ,
184
185
" RUF024" ,
185
186
" SIM" ,
186
187
" SLOT" ,
You can’t perform that action at this time.
0 commit comments