From e324c1014c2d2c507c8a470c8be04040019a7eda Mon Sep 17 00:00:00 2001 From: Ikko Eltociear Ashimine Date: Sun, 5 Mar 2023 00:29:35 +0900 Subject: [PATCH] fix(elt): typo in time_helper.py overide -> override --- ding/utils/time_helper.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ding/utils/time_helper.py b/ding/utils/time_helper.py index f723939aa5..76cfccb2e8 100644 --- a/ding/utils/time_helper.py +++ b/ding/utils/time_helper.py @@ -105,7 +105,7 @@ class TimeWrapperTime(TimeWrapper): def start_time(cls): r""" Overview: - Implement and overide the ``start_time`` method in ``TimeWrapper`` class + Implement and override the ``start_time`` method in ``TimeWrapper`` class """ cls.start = time.time() @@ -114,7 +114,7 @@ def start_time(cls): def end_time(cls): r""" Overview: - Implement and overide the end_time method in ``TimeWrapper`` class + Implement and override the end_time method in ``TimeWrapper`` class Returns: - time(:obj:`float`): The time between ``start_time`` and end_time