Closed ElliottKasoar closed 1 year ago
self.active_learning_directory is defined as join_paths(main_directory, active_learning_sub_directory), so prepending with .. is not necessary (and inconsistent with its use elsewhere, e.g. the line above).
self.active_learning_directory
join_paths(main_directory, active_learning_sub_directory)
..
self.active_learning_directory
is defined asjoin_paths(main_directory, active_learning_sub_directory)
, so prepending with..
is not necessary (and inconsistent with its use elsewhere, e.g. the line above).