(raw_ts)
| 15737 | return dt |
| 15738 | |
| 15739 | def _format_profile_ts(raw_ts): |
| 15740 | dt = _parse_of_datetime(raw_ts) |
| 15741 | if dt is None: |
| 15742 | return ("N/A", "N/A") |
| 15743 | return (_fmt_of_ts(dt.isoformat()), dt.astimezone(timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ")) |
| 15744 | |
| 15745 | candidate_username = profile.get("username") or profile.get("user_name") or profile.get("handle") or profile.get("slug") or "" |
| 15746 | candidate_name = _pick_profile_name(profile) |
nothing calls this directly
no outgoing calls
no test coverage detected