| Total Complexity | 0 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | __all__ = ( |
||
| 2 | 'NOTHING', |
||
| 3 | 'VERSION_2_0', |
||
| 4 | ) |
||
| 5 | |||
| 6 | |||
| 7 | class NOTHING: |
||
| 8 | pass |
||
| 9 | |||
| 10 | |||
| 11 | VERSION_2_0 = '2.0' |
||
| 12 | |||
| 13 | EMPTY_VALUES = (None, NOTHING,) |
||
| 14 | |||
| 15 | JSON_PRIMITIVE_TYPES = (str, int, float, bool, type(None),) |
||
| 16 |