Skip to content

Commit

Permalink
Merge pull request #5 from sparkmicro/0.1.3
Browse files Browse the repository at this point in the history
0.1.3
  • Loading branch information
eeintech authored Mar 27, 2023
2 parents d625448 + 22b28a5 commit 1358aee
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 55 deletions.
2 changes: 1 addition & 1 deletion mouser/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def get_clean_response(self):
part_data = parts[0]
# Merge
for key in cleaned_data:
cleaned_data[key] = part_data[key]
cleaned_data[key] = part_data.get(key, None)

return cleaned_data

Expand Down
Loading

0 comments on commit 1358aee

Please # to comment.