(self, hour, ampm)
| 1090 | return val_is_ampm |
| 1091 | |
| 1092 | def _adjust_ampm(self, hour, ampm): |
| 1093 | if hour < 12 and ampm == 1: |
| 1094 | hour += 12 |
| 1095 | elif hour == 12 and ampm == 0: |
| 1096 | hour = 0 |
| 1097 | return hour |
| 1098 | |
| 1099 | def _parse_min_sec(self, value): |
| 1100 | # TODO: Every usage of this function sets res.second to the return |
no outgoing calls
no test coverage detected