Handle pylint suggestions

This commit is contained in:
Kristóf Tóth 2019-05-27 14:16:51 +02:00
parent 2134d743c3
commit 82df8a8065
3 changed files with 1 additions and 2 deletions

View File

@ -6,6 +6,7 @@ disable = missing-docstring, too-few-public-methods, invalid-name
[SIMILARITIES]
min-similarity-lines=6
ignore-comments=yes
ignore-docstrings=yes
ignore-imports=yes

View File

@ -118,7 +118,6 @@ class EventHandlerBase(ABC):
Perform cleanup actions such as releasing database
connections and stuff like that.
"""
pass
@classmethod
def get_local_instances(cls):

View File

@ -42,4 +42,3 @@ class FSMAware:
:param kwargs: fsm_update 'data' field
"""
pass