Passed
Push — master ( 863a60...41e8a0 )
by Michael
15:33
created

aiohttp_rpc.constants   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 9
dl 0
loc 16
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
EMPTY_VALUES = (None, NOTHING,)
14
15
JSON_PRIMITIVE_TYPES = (str, int, float, bool, type(None),)
16