()
| 27 | copy_files_recursively(DataFlowPath.get_dataflow_playground_dir(), target_dir) |
| 28 | |
| 29 | def _copy_examples(): |
| 30 | target_dir = os.path.join(os.getcwd(), "example_data") |
| 31 | if not os.path.exists(target_dir): |
| 32 | os.makedirs(target_dir) |
| 33 | copy_files_recursively(DataFlowPath.get_dataflow_example_dir(), target_dir) |
| 34 | |
| 35 | def cli_init(subcommand): |
| 36 | print(f'{Fore.GREEN}Initializing in current working directory...{Style.RESET_ALL}') |
no test coverage detected