GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( d4663b...83e50d )
by P.R.
02:57
created

RequestPossibleNodeActionsMessage.__init__()   A

Complexity

Conditions 1

Size

Total Lines 22

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
c 1
b 0
f 0
dl 0
loc 22
rs 9.2
ccs 0
cts 5
cp 0
crap 2
1
"""
2
Enarksh
3
4
Copyright 2013-2016 Set Based IT Consultancy
5
6
Licence MIT
7
"""
8
from enarksh.message.Message import Message
0 ignored issues
show
Bug introduced by
The name message does not seem to exist in module enarksh.
Loading history...
Configuration introduced by
The import enarksh.message.Message could not be resolved.

This can be caused by one of the following:

1. Missing Dependencies

This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.

# .scrutinizer.yml
before_commands:
    - sudo pip install abc # Python2
    - sudo pip3 install abc # Python3
Tip: We are currently not using virtualenv to run pylint, when installing your modules make sure to use the command for the correct version.

2. Missing __init__.py files

This error could also result from missing __init__.py files in your module folders. Make sure that you place one file in each sub-folder.

Loading history...
9
from enarksh.message.MessageController import MessageController
0 ignored issues
show
Bug introduced by
The name message does not seem to exist in module enarksh.
Loading history...
Configuration introduced by
The import enarksh.message.MessageController could not be resolved.

This can be caused by one of the following:

1. Missing Dependencies

This error could indicate a configuration issue of Pylint. Make sure that your libraries are available by adding the necessary commands.

# .scrutinizer.yml
before_commands:
    - sudo pip install abc # Python2
    - sudo pip3 install abc # Python3
Tip: We are currently not using virtualenv to run pylint, when installing your modules make sure to use the command for the correct version.

2. Missing __init__.py files

This error could also result from missing __init__.py files in your module folders. Make sure that you place one file in each sub-folder.

Loading history...
10
11
12
class RequestPossibleNodeActionsMessage(Message):
13
    """
14
    Message type for requesting all possible node actions for a run node.
15
    """
16
    MESSAGE_TYPE = 'controller:RequestPossibleNodeActionsMessage'
17
    """
18
    The message type.
19
20
    :type: str
21
    """
22
23
    # ------------------------------------------------------------------------------------------------------------------
24
    def __init__(self, sch_id, rnd_id):
25
        """
26
        Object constructor.
27
28
        :param int sch_id: The ID of the schedule.
29
        :param int rnd_id: The ID of the run node.
30
        """
31
        Message.__init__(self, RequestPossibleNodeActionsMessage.MESSAGE_TYPE)
32
33
        self.sch_id = sch_id
34
        """
35
        The ID of the schedule.
36
37
        :type: int
38
        """
39
40
        self.rnd_id = rnd_id
41
        """
42
        The ID of the run node.
43
44
        :type: int
45
        """
46
47
    # ------------------------------------------------------------------------------------------------------------------
48
    @staticmethod
49
    def create_from_json(message):
50
        """
51
        Object constructor using JSON encoded message.
52
53
        :param * message: The message.
54
55
        :rtype: enarksh.controller.message.RequestPossibleNodeActionsMessage.RequestPossibleNodeActionsMessage
56
        """
57
        return RequestPossibleNodeActionsMessage(int(message['sch_id']), int(message['rnd_id']))
58
59
    # ------------------------------------------------------------------------------------------------------------------
60
    def send_message(self, end_point):
61
        """
62
        Sends the message to an end point.
63
64
        :param str end_point: The end point.
65
66
        :rtype: None
67
        """
68
        self.message_controller.send_message(end_point, self)
0 ignored issues
show
Bug introduced by
The Instance of RequestPossibleNodeActionsMessage does not seem to have a member named message_controller.

This check looks for calls to members that are non-existent. These calls will fail.

The member could have been renamed or removed.

Loading history...
69
70
# ----------------------------------------------------------------------------------------------------------------------
71
MessageController.register_json_message_creator(RequestPossibleNodeActionsMessage.MESSAGE_TYPE,
72
                                                RequestPossibleNodeActionsMessage.create_from_json)
73