Currently, within statline_bq flow, remove_dir() which runs as a clean up task in most flows, receives its input parameters from main(). However, if main() fails, no input is given to remove_dir(), and it fails as well.
remove_dir() should alway run and its input must be independent from the state of main().
Currently, within
statline_bq
flow,remove_dir()
which runs as a clean up task in most flows, receives its input parameters frommain()
. However, ifmain()
fails, no input is given toremove_dir()
, and it fails as well.remove_dir()
should alway run and its input must be independent from the state ofmain()
.