Skip to content
Snippets Groups Projects
Commit 1577a808 authored by Corné Lukken's avatar Corné Lukken
Browse files

L2SS-983: Fix unrelated linting errors

parent dbf32ef3
No related branches found
No related tags found
1 merge request!469L2SS-983: Deployment through environments and ansible
...@@ -15,12 +15,12 @@ class AbstractCommClient(ABC): ...@@ -15,12 +15,12 @@ class AbstractCommClient(ABC):
def stop(self): def stop(self):
""" Stop communication with the client. """ """ Stop communication with the client. """
def ping(self): # noqa: B027 @abstractmethod
def ping(self):
""" Check whether the connection is still alive. """ Check whether the connection is still alive.
Clients that override this method must raise an Exception if the Clients that override this method must raise an Exception if the
connection died. """ connection died. """
pass
@abstractmethod @abstractmethod
def setup_attribute(self, annotation, attribute): def setup_attribute(self, annotation, attribute):
......
...@@ -118,4 +118,4 @@ commands = ...@@ -118,4 +118,4 @@ commands =
[flake8] [flake8]
filename = *.py,.stestr.conf,.txt filename = *.py,.stestr.conf,.txt
ignore = B014, B019, W291, W293, W391, E111, E114, E121, E122, E123, E124, E126, E127, E128, E131, E201, E201, E202, E203, E221, E222, E225, E226, E231, E241, E251, E252, E261, E262, E265, E271, E301, E302, E303, E305, E306, E401, E402, E501, E502, E701, E712, E721, E731, F403, F523, F541, F841, H301, H306, H401, H403, H404, H405, W503 ignore = B014, B019, W291, W293, W391, E111, E114, E121, E122, E123, E124, E126, E127, E128, E131, E201, E201, E202, E203, E221, E222, E225, E226, E231, E241, E251, E252, E261, E262, E265, E271, E301, E302, E303, E305, E306, E401, E402, E501, E502, E701, E712, E721, E731, F403, F523, F541, F841, H301, H306, H401, H403, H404, H405, W503
exclude=.tox,.egg-info,libhdbpp-python, SNMP_mib_loading exclude=.tox,build,.egg-info,libhdbpp-python, SNMP_mib_loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment