()
| 101 | |
| 102 | |
| 103 | def main(): |
| 104 | user_id = sys.argv[1] if len(sys.argv) > 1 else "user_001" |
| 105 | |
| 106 | profile = get_profile(user_id) |
| 107 | |
| 108 | if profile: |
| 109 | print(format_profile(profile)) |
| 110 | else: |
| 111 | print(f"[ERROR] No profile found for user: {user_id}") |
| 112 | print("Run cold_start.py first to create a profile.") |
| 113 | |
| 114 | |
| 115 | if __name__ == "__main__": |
no test coverage detected