You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assigned to you. As noted in the group, please get started with this one. #4580 and #4575 require a bit more understanding of PTBs code base, so I'd like to first see how this one works out :)
The imports of the
datetime
module are all over the place. We currently have at least the following styles in our lib:import datetime
import datetime as dtm
from datetime import datetime, timedelta
Let's unify that to
import datetime as dtm
. I prefer this option sincedatetime.datetime
, a standalonedatetime
can be confusing. Using the toplevel module is preferable IMO.dtm
is shorter thatdatetime
, plus it makedtm.datetime
unambiguous`The text was updated successfully, but these errors were encountered: