fix int not iterable error in _init_devices#209
Merged
Conversation
62093ea to
4c7a39a
Compare
jepler
approved these changes
Nov 29, 2024
|
This makes sense but it'd be nice if @snkYmkrct or @ktnyt could test it. |
adafruit-adabot
added a commit
to adafruit/Adafruit_CircuitPython_Bundle
that referenced
this pull request
Dec 3, 2024
Updating https://github.com/adafruit/Adafruit_CircuitPython_BNO055 to 5.4.17 from 5.4.16: > Merge pull request adafruit/Adafruit_CircuitPython_BNO055#128 from FoamyGuy/compass_mode_example Updating https://github.com/adafruit/Adafruit_CircuitPython_floppy to 3.0.0 from 2.0.1: > Merge pull request adafruit/Adafruit_CircuitPython_floppy#12 from adafruit/floppsy-revb-fat-archiver Updating https://github.com/adafruit/Adafruit_CircuitPython_MMC56x3 to 1.0.10 from 1.0.9: > Merge pull request adafruit/Adafruit_CircuitPython_MMC56x3#7 from FoamyGuy/use_ruff > Merge pull request adafruit/Adafruit_CircuitPython_MMC56x3#6 from FoamyGuy/chip_id_0x00 Updating https://github.com/adafruit/Adafruit_CircuitPython_MPL3115A2 to 3.0.5 from 3.0.4: > Merge pull request adafruit/Adafruit_CircuitPython_MPL3115A2#32 from FoamyGuy/type_annotations Updating https://github.com/adafruit/Adafruit_CircuitPython_MSA301 to 1.3.6 from 1.3.5: > Merge pull request adafruit/Adafruit_CircuitPython_MSA301#21 from FoamyGuy/type_annotations Updating https://github.com/adafruit/Adafruit_CircuitPython_NeoPxl8 to 0.3.1 from 0.3.0: > Merge pull request adafruit/Adafruit_CircuitPython_NeoPxl8#14 from FoamyGuy/more_animation_example > Merge pull request adafruit/Adafruit_CircuitPython_NeoPxl8#12 from mcmanigle/patch-1 Updating https://github.com/adafruit/Adafruit_CircuitPython_BLE to 10.0.11 from 10.0.10: > Merge pull request adafruit/Adafruit_CircuitPython_BLE#209 from Neradoc/Neradoc-patch-1 Updating https://github.com/adafruit/Adafruit_CircuitPython_Bundle/circuitpython_library_list.md to NA from NA: > Updated download stats for the libraries
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This fixes #208 by iterating over the dictionary key/value pairs using
.items()