Loading lib/push_data.py +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ def push_data_to(destination): current_path = Path(os.getcwd()) destination_dir = Path(destination) if not destination_dir.exists(): raise AssertionError(f"dir {destination} not found") os.makedirs(destination) for file in current_path.glob("*.h5"): shutil.move(file.name, f'{destination_dir}/{file.name}') write_metadata() Loading Loading
lib/push_data.py +1 −1 Original line number Diff line number Diff line Loading @@ -22,7 +22,7 @@ def push_data_to(destination): current_path = Path(os.getcwd()) destination_dir = Path(destination) if not destination_dir.exists(): raise AssertionError(f"dir {destination} not found") os.makedirs(destination) for file in current_path.glob("*.h5"): shutil.move(file.name, f'{destination_dir}/{file.name}') write_metadata() Loading