Commit a249c47
committed
adafruit_itertools_extra: Fix import
The import statement incorrectly referred to the package,
not the submodule, leading to the reported traceback
Testing performed: the user's testcase,
```
>>> from adafruit_itertools.adafruit_itertools import count
>>> from adafruit_itertools.adafruit_itertools_extras import take
>>> take(1, count(1, 5))
[1]
```
Closes: #31 parent 7a8d752 commit a249c47
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| |||
0 commit comments