Removed H404, H405, H305 ignore in pep8
In the file tox.ini we have some pep8 rules disabled. We should remove H404,H405,H305 from the ignore list. Removed them from the ignore list, and got some errors. I restructured the comments, and now with H404, H405, H305 enabled, pep8 works without any failures. Change-Id: Ic2aeb2a8bd47e92fbd2bb0f43fd00d44b6c220ca Closes-Bug: #1523841
This commit is contained in:
@@ -24,9 +24,10 @@ LOG = log.getLogger(__name__)
|
||||
|
||||
class DefaultSolution(Solution):
|
||||
def __init__(self):
|
||||
"""The DefaultSolution class store a set of actions generated by a
|
||||
strategy in order to achieve the goal.
|
||||
"""Stores a set of actions generated by a strategy
|
||||
|
||||
The DefaultSolution class store a set of actions generated by a
|
||||
strategy in order to achieve the goal.
|
||||
"""
|
||||
super(DefaultSolution, self).__init__()
|
||||
self._actions = []
|
||||
@@ -39,6 +40,5 @@ class DefaultSolution(Solution):
|
||||
|
||||
@property
|
||||
def actions(self):
|
||||
"""Get the current actions of the solution
|
||||
"""
|
||||
"""Get the current actions of the solution"""
|
||||
return self._actions
|
||||
|
||||
Reference in New Issue
Block a user