Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions siuba/experimental/datetime.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@

LUBRIDATE_OFFSETS = {
"second": "S",
"minute": "M",
"minute": "T",
"hour": "H",
"day": "D",
"week": "W",
"month": "M",
"bimonth": "2M",
"quarter": "Q",
"month": "MS",
"bimonth": "2MS",
"quarter": "QS",
"season": None,
"halfyear": None,
"year": "Y"
"year": "YS"
}

# There's no class that clearly identifies all the Datetime op compatible classes,
Expand Down