Skip to content

Commit

Permalink
Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
oiffrig committed Jul 26, 2024
1 parent 88e9676 commit 35b184e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"sphinx.ext.autodoc",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
"sphinx_rtd_theme"
"sphinx_rtd_theme",
]

templates_path = ["_templates"]
Expand Down
2 changes: 2 additions & 0 deletions src/earthkit/time/calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

class Weekday(IntEnum):
""":class:`enum.IntEnum` representing week days"""

MONDAY = 0
TUESDAY = 1
WEDNESDAY = 2
Expand Down Expand Up @@ -84,6 +85,7 @@ def day_exists(year: int, month: int, day: int) -> bool:

class MonthInYear:
"""Represent a given month in a year"""

year: int
month: int

Expand Down

0 comments on commit 35b184e

Please sign in to comment.