aiohttp_rpc.constants   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 8
dl 0
loc 14
rs 10
c 0
b 0
f 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
JSON_PRIMITIVE_TYPES = (str, int, float, bool, type(None),)
14