Created
September 30, 2024 07:18
-
-
Save paulsonnentag/381e64398d70988bfb8e9687e715a267 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
import os | |
def declare_output(path): | |
absolute_path = os.path.abspath(path) | |
print(f"jacquard: declare output {absolute_path}") | |
def declare_input(path): | |
absolute_path = os.path.abspath(path) | |
print(f"jacquard: declare input {absolute_path}") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment