Skip to content

Commit

Permalink
testing finish
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Tunberg committed Aug 25, 2024
1 parent 6d39a4e commit 29d014a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bin/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def load_environment_variables():
envs = {}
for var_name, input_name in env_var_names.items():
envs[var_name] = os.environ.get(input_name)
print(f"{var_name}")
if not envs[var_name] and var_name not in [
"input_file",
"input_md_directory",
Expand Down Expand Up @@ -245,7 +244,6 @@ def main():
Main function that orchestrates it all
"""
envs = load_environment_variables()
print(envs)
links = []
if "input_file" in envs:
# Process a single file
Expand All @@ -263,4 +261,4 @@ def main():


if __name__ == "__main__":
main()
main()

0 comments on commit 29d014a

Please sign in to comment.