Skip to content

Commit 8280e11

Browse files
committed
wip
1 parent 8dcedda commit 8280e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/esm_calendar/esm_calendar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1043,7 +1043,7 @@ def from_list(cls, components: List[int]) -> "Date":
10431043
.. code-block:: python
10441044
10451045
>>> Date.from_list([2024, 2, 16, 11, 30, 0])
1046-
Date(2024-02-16T11:30:00)
1046+
Date(2024-02-16_11:30:00)
10471047
"""
10481048
signs = ["-" if n < 0 else "" for n in components]
10491049
str_components = [str(abs(n)) for n in components]

0 commit comments

Comments
 (0)