cd_to_working_dir() to get_working_dir
Opened this issue · 2 comments
ashgillman commented
To be honest, I do not see the added value of the function cd_to_working_dir
as it's use is just to change directory to a directory where the user will store temporary working data. It does it in a totally opaque way and it really just wraps os.path.join
+ os.makedirs
, we might as well just use those in the notebooks and will not have the problem.
Also the user does not seem to know where this directory is, unless he/she reads the docstring.
Originally posted by @paskino in #118 (comment)
ashgillman commented
Do we want to replace all to:
os.chdir(get_working_dir())
?
KrisThielemans commented
at this point in time, I wouldn't do it anymore. We can do it afterwards