-
Notifications
You must be signed in to change notification settings - Fork 6k
Description
The imports of the datetime module are all over the place. We currently have at least the following styles in our lib:
import datetimeimport datetime as dtmfrom datetime import datetime, timedelta
Let's unify that to import datetime as dtm. I prefer this option since
- Since there is
datetime.datetime, a standalonedatetimecan be confusing. Using the toplevel module is preferable IMO. dtmis shorter thatdatetime, plus it makedtm.datetimeunambiguous`
Metadata
Metadata
Assignees
Labels
🛠 code-qualitychange type: code-qualitychange type: code-quality