| 38 | |
| 39 | |
| 40 | class FalsyList(list): |
| 41 | def __bool__(self): |
| 42 | # for Python 3 |
| 43 | return False |
| 44 | |
| 45 | def __nonzero__(self): |
| 46 | # for Python 2 |
| 47 | return False |
| 48 | |
| 49 | |
| 50 | falsy_triggered = FalsyList([{"prop_id": ".", "value": None}]) |
no outgoing calls
no test coverage detected
searching dependent graphs…