Skip to content

Commit 52130e1

Browse files
committed
Some style fixes
1 parent 28e2a36 commit 52130e1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

robotframework_reportportal/time_visitor.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
"""This module provides a visitor for the robot framework results to correct the start and end times of the nodes."""
16+
1517
import logging
1618

1719
from robot.api import ResultVisitor
@@ -21,11 +23,12 @@
2123

2224

2325
class TimeVisitor(ResultVisitor):
26+
"""Visitor for the robot framework results to correct the start and end times of the nodes."""
2427

2528
@staticmethod
2629
def _correct_starts(o, node_class):
2730
"""
28-
starttime wants to be the oldest start time of its children.
31+
Starttime wants to be the oldest start time of its children.
2932
only correcting null starttime.
3033
"""
3134
if o.starttime:

0 commit comments

Comments
 (0)