(mapping)
| 133 | import time |
| 134 | |
| 135 | def is_refresh_needed(mapping): |
| 136 | now = int(time.time() * 1000) # Convert to milliseconds |
| 137 | return now >= mapping['refresh_from'] |
| 138 | |
| 139 | def remap_identities(to_remap): |
| 140 | # Mock function to remap identities |
no outgoing calls
no test coverage detected