Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/pendulum/day.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

10 statements  

1from __future__ import annotations 

2 

3from enum import IntEnum 

4 

5 

6class WeekDay(IntEnum): 

7 MONDAY = 0 

8 TUESDAY = 1 

9 WEDNESDAY = 2 

10 THURSDAY = 3 

11 FRIDAY = 4 

12 SATURDAY = 5 

13 SUNDAY = 6