We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1ee264 commit a82d691Copy full SHA for a82d691
1 file changed
templateflow/__init__.py
@@ -14,8 +14,21 @@
14
del get_distribution
15
del DistributionNotFound
16
17
+import os
18
from . import api
-from .conf import update
19
+from .conf import update, setup_home
20
+
21
22
+if os.getenv("TEMPLATEFLOW_AUTOUPDATE", "1") not in (
23
+ "false",
24
+ "off",
25
+ "0",
26
+ "no",
27
+ "n",
28
+):
29
+ # trigger skeleton autoupdate
30
+ update(local=True, overwrite=False)
31
32
33
__all__ = [
34
'__copyright__',
0 commit comments