Skip to content

Commit 3d2ae71

Browse files
committed
wip
1 parent 8280e11 commit 3d2ae71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/esm_calendar/esm_calendar.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -563,14 +563,14 @@ def syear(self) -> str:
563563
@property
564564
def sdoy(self) -> str:
565565
"""
566-
Returns a zero-padded string of the day of the year.
566+
Returns a string of the day of the year.
567567
568568
Returns
569569
-------
570570
str
571571
The day of the year as a 3-digit string.
572572
"""
573-
return f"{self.day_of_year():03d}"
573+
return f"{self.day_of_year()}"
574574

575575
@property
576576
def smonth(self) -> str:

0 commit comments

Comments
 (0)