Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.

Update where iterable is being imported from #5

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,12 +59,12 @@ Please also indicate the specific version of Spiral you use, to improve other pe

For basic usage, the following is probably the simplest and most direct way to install Spiral on your computer:
```sh
sudo pip3 install git+https://github.com/casics/spiral.git
sudo pip3 install git+https://github.com/cnewman/spiral.git
```

Alternatively, you can clone this GitHub repository and then run `setup.py`:
```sh
git clone https://github.com/casics/spiral.git
git clone https://github.com/cnewman/spiral.git
cd spiral
sudo python3 -m pip install .
```
Expand Down
7 changes: 5 additions & 2 deletions spiral/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
# @website https://github.com/casics/spiral
# =============================================================================

import collections
try:
from collections.abc import Iterable
except ImportError:
from collections import Iterable

def msg(string, *other_args):
'''Like the standard print(), but treats the first argument as a string
Expand All @@ -22,7 +25,7 @@ def flatten(lst):
'''Recursively flatten a list of lists. From the answer by user Christian
here: https://stackoverflow.com/a/2158532/743730'''
for el in lst:
if isinstance(el, collections.Iterable) and not isinstance(el, (str, bytes)):
if isinstance(el, Iterable) and not isinstance(el, (str, bytes)):
yield from flatten(el)
else:
yield el