
Manuel Avila
2,240 PointsCreate a variable named moscow that holds a datetime.timezone object at +4 hours.
import datetime moscow = datetime.timezone(datetime.timedelta(hours=5))
not sure why it wont pass
import datetime
moscow = datetime.timezone(datetime.timedelta(hours=5))
3 Answers

Greg Kaleka
39,012 PointsHey Manuel,
You're using 5 when the challenge states the offset should be 4.
Cheers
-Greg

Mahdi Jafari
16,299 PointsThis is how I did it
import datetime
moscow = datetime.timezone(datetime.timedelta(hours=4))

Manuel Avila
2,240 PointsThank you, simple typo was ruining my day

Greg Kaleka
39,012 PointsHah yep, they tend to do that!