You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ansible:
[WARNING]: Skipping plugin (/home/user/.ansible/roles/arista.eos-bridging/filter_plugins/range_filter.py) as it seems to be invalid: invalid syntax (range_filter.py, line 52)
have Python 3.7.4 running
Is:
for _, grp in groupby(enumerate(numlist), lambda (i, x): i-x):
should:
for _, grp in groupby(enumerate(numlist), lambda i, x: i-x):
works like this for me :)
The text was updated successfully, but these errors were encountered:
Ansible:
[WARNING]: Skipping plugin (/home/user/.ansible/roles/arista.eos-bridging/filter_plugins/range_filter.py) as it seems to be invalid: invalid syntax (range_filter.py, line 52)
have Python 3.7.4 running
Is:
for _, grp in groupby(enumerate(numlist), lambda (i, x): i-x):
should:
for _, grp in groupby(enumerate(numlist), lambda i, x: i-x):
works like this for me :)
This didn't work for me. I had to use for _, grp in groupby(enumerate(numlist), lambda x: x[1]-x[0] ):
Ansible:
[WARNING]: Skipping plugin (/home/user/.ansible/roles/arista.eos-bridging/filter_plugins/range_filter.py) as it seems to be invalid: invalid syntax (range_filter.py, line 52)
have Python 3.7.4 running
Is:
should:
works like this for me :)
The text was updated successfully, but these errors were encountered: