Skip to content

Commit 4997f8a

Browse files
committed
Fix empy line after docstring (D204)
1 parent 3ec0b82 commit 4997f8a

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

compliance_tool/aas_compliance_tool/state_manager.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class Status(enum.IntEnum):
2525
:cvar FAILED:
2626
:cvar NOT_EXECUTED:
2727
"""
28+
2829
SUCCESS = 0
2930
SUCCESS_WITH_WARNINGS = 1 # never used
3031
FAILED = 2
@@ -39,6 +40,7 @@ class Step:
3940
:ivar status: Status of the step from type Status
4041
:ivar log_list: List of :class:`LogRecords <logging.LogRecord>` which belong to this step
4142
"""
43+
4244
def __init__(self, name: str, status: Status, log_list: List[logging.LogRecord]):
4345
self.name = name
4446
self.status = status
@@ -65,6 +67,7 @@ class ComplianceToolStateManager(logging.Handler):
6567
6668
:ivar steps: List of :class:`Steps <.Step>`
6769
"""
70+
6871
def __init__(self):
6972
"""
7073
steps: List of steps. Each step consist of a step name, a step status and LogRecords belong to to this step.

0 commit comments

Comments
 (0)