(dt)
| 33 | #----------------------------------------------------------------------------- |
| 34 | |
| 35 | def round_hour(dt): |
| 36 | return dt.replace(minute=0,second=0,microsecond=0) |
| 37 | |
| 38 | def _parse_datetime(s): |
| 39 | """Parse dates in the format returned by the Github API.""" |
no outgoing calls
no test coverage detected