File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 1-
21from . import utils
32from . import controller
43from . import commands
@@ -27,7 +26,7 @@ def preload_modules():
2726 if not os .path .isfile (module_path ):
2827 warnings .warn ("\n Missing file to preload modules from. Attempted to locate file at \" " + str (module_path ) +
2928 "\" . No modules will be preloaded. "
30- "\n See https://ngc-learn.readthedocs.io/en/latest/tutorials/model_basics/json_modules.html for additional information" )
29+ "\n See https://ngc-learn.readthedocs.io/en/latest/tutorials/model_basics/json_modules.html for additional information" )
3130 return
3231
3332 with open (module_path , 'r' ) as file :
@@ -65,17 +64,16 @@ def configure():
6564 if not os .path .isfile (config_path ):
6665 warnings .warn ("\n Missing configuration file. Attempted to locate file at \" " + str (config_path ) +
6766 "\" . Default Config will be used. "
68- "\n See PUT LINK HERE for additional information" )
67+ "\n See https://ngc-learn.readthedocs.io/en/latest/tutorials/model_basics/configuration.html for "
68+ "additional information" )
6969 return
7070
71- init_config (config_path )
72-
7371
72+ init_config (config_path )
7473
7574
7675if not Path (argv [0 ]).name == "sphinx-build" or Path (argv [0 ]).name == "build.py" :
7776 if "readthedocs" not in argv [0 ]: ## prevent readthedocs execution of preload
7877 configure ()
7978 logger .init_logging ()
8079 preload_modules ()
81-
You can’t perform that action at this time.
0 commit comments