Completed
Push — master ( aa0ea9...358d48 )
by Wojtek
02:19
created

CallRecord   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __init__() 0 7 1
1
# pylint: disable=too-many-arguments
0 ignored issues
show
introduced by
Locally disabling too-many-arguments (R0913)
Loading history...
Coding Style introduced by
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
3
4
class CallRecord:
0 ignored issues
show
Coding Style introduced by
This class should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
5
    def __init__(self, entity_name, method_name, input_parms_list, output,
6
                 count):
7
        self.entity_name = entity_name
8
        self.count = count
9
        self.output = output
10
        self.input_parms_list = input_parms_list
11
        self.method_name = method_name
12