Completed
Push — master ( 748306...c813f6 )
by Ramon
18s queued 12s
created

nptyping.types._complex._Complex128Meta.__repr__()   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
cc 1
nop 1
1
import numpy
2
3
from nptyping.types._nptype import NPType
4
5
6
class _Complex128Meta(type):
7
    def __repr__(cls):
8
        return 'Complex128'
9
10
    __str__ = __repr__
11
12
13
class Complex128(NPType, numpy.generic, metaclass=_Complex128Meta):
14
    """
15
    Corresponds to numpy.complex128.
16
    """
17