Skip to content

Commit

Permalink
Attempted PEP8 compliace 1
Browse files Browse the repository at this point in the history
  • Loading branch information
richardp23 committed Jun 26, 2024
1 parent 1633370 commit 0203fa5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,12 @@ def main():
print("Welcome to DietMatch!")

diet = input("\nPlease tell me what kind of diet you follow: ")
requested_recipe = input("Please tell me what kind of dish you would like to make: ")
requested_recipe = input("Please tell me what kind"
" of dish you would like to make: ")

recipe_query = get_recipe(EDAMAM_APP_ID, EDAMAM_APP_KEY, requested_recipe)
print(f"\n{alt_recipe_query(OPENAI_KEY, diet, recipe_query)}")


if __name__ == "__main__":
main()

0 comments on commit 0203fa5

Please sign in to comment.