Created
January 7, 2022 14:37
-
-
Save DevloperHS/1d8c8634ccff07c93bd604a4567796a7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def create_manifest( | |
| data: List[tuple], | |
| output_name: str, | |
| manifest_path: str): | |
| output_file = Path(manifest_path) / output_name | |
| output_file.parent.mkdir(exist_ok=True, parents=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment