(self, dt)
| 122 | return f"{user.pk}{user.password}{login_timestamp}{timestamp}{email}" |
| 123 | |
| 124 | def _num_seconds(self, dt): |
| 125 | return int((dt - datetime(2001, 1, 1)).total_seconds()) |
| 126 | |
| 127 | def _now(self): |
| 128 | # Used for mocking in tests |
no outgoing calls
no test coverage detected