Skip to content

Commit

Permalink
Fixed namign typo, yay CI!
Browse files Browse the repository at this point in the history
  • Loading branch information
jbusecke committed May 11, 2024
1 parent 2ef8ab8 commit 9b2ce28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions feedstock/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ async def get_recipe_inputs():
logger.info(f"Got urls for iids: {list(recipe_data.keys())}")

if prune_submission:
recipe_dict = {i: recipe_data[i] for i in list(recipe_data.keys())[0:5]}
recipe_data = {i: recipe_data[i] for i in list(recipe_data.keys())[0:5]}

logger.info(f"🚀 Submitting a total of {len(recipe_dict)} iids")
logger.info(f"🚀 Submitting a total of {len(recipe_data)} iids")

# Print the actual data
logger.debug(f"{recipe_data=}")
Expand Down

0 comments on commit 9b2ce28

Please sign in to comment.