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 fcb7ef2 commit 55613daCopy full SHA for 55613da
templateflow/client.py
@@ -50,6 +50,10 @@ def __init__(
50
)
51
self.cache = cache
52
53
+ def __repr__(self) -> str:
54
+ cache_type = 'DataLad' if self.cache.config.use_datalad else 'S3'
55
+ return f'<{self.__class__.__name__}[{cache_type}] cache="{self.cache.config.root}">'
56
+
57
def __getattr__(self, name: str):
58
name = name.replace('ls_', 'get_')
59
try:
0 commit comments