Issues (19)

synergine/synergy/Simulation.py (1 issue)

1
from synergine.lib.eint import IncrementedNamedInt
2
3
4
class Simulation():
5
6
    STATE = IncrementedNamedInt.get('simulation.state')
7
8
    def __init__(self, collections):
9
        self._collections = collections
10
11
    def connect_actions_signals(self, Signals):
0 ignored issues
show
Coding Style Naming introduced by
The name Signals does not conform to the argument naming conventions ([a-z_][a-z0-9_]{2,30}$).

This check looks for invalid names for a range of different identifiers.

You can set regular expressions to which the identifiers must conform if the defaults do not match your requirements.

If your project includes a Pylint configuration file, the settings contained in that file take precedence.

To find out more about Pylint, please refer to their site.

Loading history...
12
        pass
13
14
    def get_collections(self):
15
        return self._collections
16
17
    def end_cycle(self, context):
18
        pass
19