Skip to content
This repository was archived by the owner on Jan 27, 2023. It is now read-only.

Commit 4fece5b

Browse files
committed
Fix default summary + Bump version to 0.5.2
1 parent a146548 commit 4fece5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rainy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from .experiment import Experiment
33

44

5-
__version__ = "0.5.1"
5+
__version__ = "0.5.2"

rainy/utils/log.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def __init__(self, show_summary: bool = True) -> None:
7575

7676
self._store: DefaultDict[str, LogStore] = defaultdict(LogStore)
7777
self._summary_setting: DefaultDict[str, SummarySetting] = defaultdict(
78-
lambda: SummarySetting(["time"], 1, "black")
78+
lambda: SummarySetting(["sec"], 1, "black")
7979
)
8080
self._show_summary = show_summary
8181
self._closed = False

0 commit comments

Comments
 (0)