I'm testing some Django functionality in my interactive shell
Here's my attempt to probe these objects, note the list of Nones at the end
>>> [print(foo) for foo in CharacterSkillLink.objects.all() if foo.speciality]
Streetwise (Street Countdown) Roran
[None]
And with a more orthodox list comprehension:
>>> [print(foo) for foo in range(1,10)]
1
2
3
4
5
6
7
8
9
[None, None, None, None, None, None, None, None, None]
Nine Nones, all in a row.
Why am I getting that?