Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.

WarmBed/F1-data-analyze

https://github.com/WarmBed/F1-data-analyze · scanned 2026-06-16 00:56 UTC (2 months, 1 week ago)

274 raw signals (0 security + 274 graph)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 2 months, 1 week ago · v1 · 257 actionable findings from 1 signal source. 17 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Corpus Intelligence Cross-corpus context (cohort percentile, top patterns, fix plan) is shown only on repositories you own. Sign up and connect your repo to view it.
Scan summary Repository scanned at 63.7/100 with 100.0% coverage. It contains 14670 nodes across 25 cross-layer flows, written primarily in mixed languages. Engine surfaced 274 findings — concentrated in quality (212), software (30), api (21). Risk profile is high: 0 critical, 5 high, 18 medium. Recommended next step: open the quality layer findings first — that's where the highest-impact wins live.

Showing 205 of 257 actionable findings. 274 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high System graph security auth conf 1.00 FastAPI DELETE `clear_cache` without auth dependency — api/routers/cache.py:210
`@router.delete` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
api/routers/cache.py:210 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `<anonymous>` without auth dependency — api/routers/main.py:164
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
api/routers/main.py:164 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `cross_event_comparison` without auth dependency — api/routers/analysis.py:573
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
api/routers/analysis.py:573 securityAuth fastapi unauth mutation
high System graph security auth conf 1.00 FastAPI POST `execute_analysis` without auth dependency — api/routers/analysis.py:434
`@router.post` decorator with no `Depends(get_current_user)` or auth-shaped dependency in its signature. Mutating endpoints should require authentication unless explicitly public.
api/routers/analysis.py:434 securityAuth fastapi unauth mutation
high System graph security security conf 1.00 Insecure pattern 'exec_used' in modules/gui/diagnostics/objgraph_window.py:844
Found a known-risky pattern (exec_used). Review and replace if possible.
modules/gui/diagnostics/objgraph_window.py:844 Exec used
medium System graph quality Agent instructions conf 1.00 Agent instructions exist but release-hardening basics are missing
AI-coder instruction files were found, but the repo is missing ci. Treat this as a contract gap: the agent is guided, but the generated output is not yet guarded by the controls that make it repeatable.
Repo hardeningGenerated repo pattern
medium System graph quality Placeholder conf 1.00 Critical user flow still appears backed by mock or placeholder data
A payment/auth/admin/order/billing-style flow contains mock, fake, TODO, dummy, or placeholder markers in runtime source. In the Fable corpus this is a high-leverage completeness smell: the app can look finished while the money, identity, or tenant flow is still scaffolded.
Mock dataCritical flowGenerated repo pattern
medium System graph security security conf 1.00 Insecure pattern 'cors_wildcard' in scripts/f1tv_browser_login.py:187
Found a known-risky pattern (cors_wildcard). Review and replace if possible.
scripts/f1tv_browser_login.py:187 Cors wildcard
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in build_tools/build_exe_gui.py:737
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
build_tools/build_exe_gui.py:737 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — build_tools/build_exe_gui.py:231
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — launch_batch_generator_gui.py:19
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — modules/gui/all_drivers/brake/brake_all_laps_loader.py:402
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — modules/gui/all_drivers/max_speed/max_speed_data_loader.py:277
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — modules/gui/diagnostics/objgraph_window.py:1458
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — modules/gui/tire_analysis/tire_analysis_mdi.py:426
`requests.post(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/batch_f47_2025_to_mexico.py:135
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — scripts/f1tv_extract_cookie.py:258
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/profile_gui.py:286
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/profile_gui_pyspy.py:136
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/profile_live_timing.py:358
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — tools/profile_live_timing_playback.py:317
`subprocess.Popen(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph quality Placeholder conf 1.00 Placeholder or mock-heavy implementation detected
Found 165 placeholder/mock markers across 45 source files. This often means the repo looks complete while core flows still use generated scaffolding or fake data.
Mock dataIncompleteGenerated repo pattern
low System graph quality Debug conf 1.00 Debug logging residue appears in source files
Found 11171 console/debugger/print-style debug statements in non-test source. This is a common fast-generation residue before production cleanup.
CleanupRepo hardeningGenerated repo pattern
low System graph software Dead code candidate conf 1.00 File has no detected symbols: modules/gui/race_analysis/temp/temp_analysis_universal.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/dev/temp_check_api_data.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/dev/temp_check_gas_alo.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/dev/temp_check_raw_stream.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/dev/temp_check_team_radio.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/dev/temp_check_timing.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: scripts/dev/temp_sampling_rate.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph security security conf 1.00 Insecure pattern 'debug_true' in CLI_modules/cli/analyzer/all_drivers_straight_line_speed.py:976
Found a known-risky pattern (debug_true). Review and replace if possible.
CLI_modules/cli/analyzer/all_drivers_straight_line_speed.py:976 Debug true
low System graph quality Integrity conf 1.00 11 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: signalr_recorder_gui.py:main, tools/signalr_recorder/recorder_main.py:main This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document why they're separate.
11 occurrences
repo-level (11 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 3 places
Functions with the same first-5-line body hash: CLI_modules/cli/validation/tire_saving_validator.py:to_dict, CLI_modules/cli/validation/tire_saving_validator.py:to_dict, CLI_modules/cli/validation/tire_saving_validator.py:to_dict This is *the* AI-coder failure mode (4× more duplication in vibe-cod…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 6 occurrences Near-duplicate function bodies in 5 places
Functions with the same first-5-line body hash: learn_team_fuel_habits.py:load_training_data, scripts/dev/learn_track_evolution_factor.py:load_training_data, scripts/dev/learn_team_residual_adjustment.py:load_training_data, scripts/dev/learn_track_adjustment_factor.py:load_training_data This is *t…
6 occurrences
repo-level (6 hits)
duplicatesduplication
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_build_url_old` in CLI_modules/cli/analyzer/fia_season_stats_analyzer.py:356
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_get_speed_at_distance_v2` in CLI_modules/cli/analyzer/fp2_corner_all_laps_analysis.py:1153
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_get_speed_at_distance_v2` in tests/test_f120_v2_fix.py:2
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_perform_analysis_legacy` in CLI_modules/cli/analyzer/corner_detailed_analysis.py:188
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `_setup_summary_labels_old` in strategy_simulator/gui/results_tabs/full_race_tab.py:301
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `analyze_race_gaps_v2` in scripts/dev/analyze_real_race_gaps_v2.py:9
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `analyze_v2` in api/routers/main.py:47
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `base_pace_old` in tests/test_f83_cli.py:11
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `cache_service_v2` in api/services/cache_service.py:7
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `cache_service_v2` in api/services/simple_analysis_service.py:34
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `close_combat_xgb_v1` in CLI_modules/cli/prediction/overtake_prediction/close_combat_trainer.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `convert_prints_v2` in scripts/convert_prints_v2.py:6
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `data_file_v2` in tests/test_function_29_v2.py:74
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `debug_realtime_data_format_v2` in tests/debug_realtime_data_format_v2.py:37
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `dynamic_team_rating_v1` in modules/gui/race_prediction/race_prediction_data_loader.py:347
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `F1T_JSON_v1` in CLI_modules/cli/core/json_generator.py:108
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `filepath_v1` in tests/test_red_flag_final_verification.py:157
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fp2_race_ml_predictor_v2` in tests/test_japan_f91.py:5
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fp2_race_ml_training_report_v2` in tests/check_training_report.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fp2_race_ml_v2` in tests/check_model_info.py:5
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `fp2_race_ml_v2` in tests/check_models.py:4
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `ideal_lap_sector_heatmap_widget_old` in scripts/cleanup_gui_modules.py:41
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `include_deprecated` in api/models/requests.py:226
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `item_copy` in modules/gui/live_timing/core/signalr_client.py:458
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `json_backup` in tools/migrate_json_files.py:53
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `minimal_backup` in CLI_modules/cli/core/function_mapper.py:1712
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `missing_and_unused` in scripts/fix_tr_imports.py:75
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `openf1_exact_v1` in core/openf1_exact_generators.py:215
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `overtake_xgb_v1` in CLI_modules/cli/prediction/overtake_prediction/model_trainer.py:13
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `payload_copy` in modules/gui/driver_race/detailed_lap_analysis/driverlap_analysis_mdi.py:945
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `raw_data_old` in tests/test_throttle_fix.py:37
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `result_old` in tests/test_mexico_sc_skip.py:36
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `snapshot_copy` in tools/diagnose_playback_lag.py:117
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `stints_copy` in strategy_simulator/core/monte_carlo.py:507
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `stints_copy` in strategy_simulator/gui/main_window-XM0152.py:1660
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `stints_copy` in strategy_simulator/gui/main_window.py:1974
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `weight_old` in CLI_modules/cli/prediction/tire_degradation_analyzer.py:892
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `win_probability_xgb_v2` in tests/check_model.py:3
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `win_probability_xgb_v2` in tests/debug_gui_vs_md.py:37
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `win_probability_xgb_v2` in tests/debug_usa_lap30.py:16
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph quality Integrity conf 1.00 Old/deprecated-named symbol `win_probability_xgb_v2` in tools/win_probability_diagnosis.py:172
Names with suffixes like `_old`, `_v1`, `_deprecated` usually indicate replaced-but-not-removed code (typical AI-coder leftover). Confirm and delete, or rename if it's the active version.
old markerDead code
low System graph software Dead code conf 1.00 Possibly dead Python function: decorator
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/cache/cache_manager.py:226
low System graph software Dead code conf 1.00 Possibly dead Python function: display_json_preview
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/analyzer/driver_detailed_pitstop_records.py:393
low System graph software Dead code conf 1.00 Possibly dead Python function: evaluate_by_category
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/prediction/track_classifier.py:332
low System graph software Dead code conf 1.00 Possibly dead Python function: invalidate
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/cache/cache_manager.py:94
low System graph software Dead code conf 1.00 Possibly dead Python function: is_sc_active
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/utils/base_overtake_detector.py:306
low System graph software Dead code conf 1.00 Possibly dead Python function: map_track_to_cluster
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/prediction/xgboost_trainer.py:444
low System graph software Dead code conf 1.00 Possibly dead Python function: predict_all_drivers_pit_windows
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/prediction/pit_stop_strategy_predictor.py:249
low System graph software Dead code conf 1.00 Possibly dead Python function: purge_expired
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/cache/cache_manager.py:106
low System graph software Dead code conf 1.00 Possibly dead Python function: run_accident_all_incidents_summary
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:476
low System graph software Dead code conf 1.00 Possibly dead Python function: run_accident_driver_severity_scores
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:424
low System graph software Dead code conf 1.00 Possibly dead Python function: run_accident_key_events_summary
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:372
low System graph software Dead code conf 1.00 Possibly dead Python function: run_accident_team_risk_scores
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:450
low System graph software Dead code conf 1.00 Possibly dead Python function: run_annual_dnf_statistics
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
CLI_modules/cli/analyzer/annual_dnf_statistics.py:361
low System graph software Dead code conf 1.00 Possibly dead Python function: run_rain_intensity_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:355
low System graph software Dead code conf 1.00 Possibly dead Python function: run_telemetry_complete_lap_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:504
low System graph software Dead code conf 1.00 Possibly dead Python function: run_telemetry_detailed_tire_strategy
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:514
low System graph software Dead code conf 1.00 Possibly dead Python function: run_telemetry_fastest_lap
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:554
low System graph software Dead code conf 1.00 Possibly dead Python function: run_telemetry_pitstop_records
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:534
low System graph software Dead code conf 1.00 Possibly dead Python function: run_telemetry_special_events
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:544
low System graph software Dead code conf 1.00 Possibly dead Python function: run_telemetry_specific_lap
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:564
low System graph software Dead code conf 1.00 Possibly dead Python function: run_telemetry_tire_performance_analysis
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:524
low System graph software Dead code conf 1.00 Possibly dead Python function: show_module_status
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
f1_analysis_modular_main.py:312
low System graph quality Provenance conf 1.00 Shallow git history limits provenance confidence
The repository is a shallow clone. Origin/evolution analysis cannot distinguish fresh generation, imported legacy code, or long-lived human code with high confidence.
Git historyGenerated repo pattern
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — scripts/f1tv_console_extractor.js:41
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
low System graph quality Integrity conf 1.00 Stub function `close` (body is just `pass`/`return`) — core/local_requests.py:41
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `get_current_mdi_area` (body is just `pass`/`return`) — tools/run_gui_coverage_matrix.py:102
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `get_current_year` (body is just `pass`/`return`) — modules/gui/interfaces/base_analysis_module_copy.py:56
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `set_gui_language` (body is just `pass`/`return`) — modules/gui/driver_race/detailed_lap_analysis/detailed_lap_options_dialog.py:34
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `set_gui_language` (body is just `pass`/`return`) — modules/gui/lap_analysis/ideal_lap/ideal_lap_options_dialog.py:35
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph quality Integrity conf 1.00 Stub function `write` (body is just `pass`/`return`) — f1t_gui_main.py:16
Likely an AI scaffold that was never filled in. Remove or implement.
Empty handlerDead code
low System graph api Wiring conf 1.00 Unused endpoint: DELETE /clear
`api/routers/cache.py` declares `DELETE /clear` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /
`api/routers/main.py` declares `GET /` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /all
`api/routers/config.py` declares `GET /all` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /cache/search
`api/routers/main.py` declares `GET /cache/search` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /cache/status
`api/routers/main.py` declares `GET /cache/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /files
`api/routers/cache.py` declares `GET /files` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /fuel-coefficients
`api/routers/config.py` declares `GET /fuel-coefficients` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /functions
`api/routers/main.py` declares `GET /functions` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /list
`api/routers/config.py` declares `GET /list` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /monitor/status
`api/routers/system.py` declares `GET /monitor/status` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /pit-loss
`api/routers/config.py` declares `GET /pit-loss` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /search
`api/routers/cache.py` declares `GET /search` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /strategy-coefficients
`api/routers/config.py` declares `GET /strategy-coefficients` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /strategy-coefficients/{circuit}
`api/routers/config.py` declares `GET /strategy-coefficients/{circuit}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /throttle-baseline
`api/routers/config.py` declares `GET /throttle-baseline` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /throttle-baseline/{circuit}
`api/routers/config.py` declares `GET /throttle-baseline/{circuit}` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /tire-degradation
`api/routers/config.py` declares `GET /tire-degradation` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: GET /track-features
`api/routers/config.py` declares `GET /track-features` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /analyze
`api/routers/main.py` declares `POST /analyze` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /cross-event-comparison
`api/routers/analysis.py` declares `POST /cross-event-comparison` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph api Wiring conf 1.00 Unused endpoint: POST /execute
`api/routers/analysis.py` declares `POST /execute` but no frontend code we scanned calls it. This is fine if the endpoint serves external clients (mobile app, third-party, server-side webhooks). Otherwise it's dead code — consider removing or documenting who consumes it.
Unused endpoint
low System graph quality Complexity conf 1.00 Very large file: api/services/cache_service.py (1669 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: api/services/simple_analysis_service.py (1322 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/all_drivers_straight_line_speed.py (2810 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/all_incidents_summary.py (1468 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/corner_detailed_analysis.py (1781 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/driver_comparison_advanced.py (2312 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/f1_analysis_modular_main.py (1935 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/fp2_corner_all_laps_analysis.py (1451 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/historical_flags_analysis.py (2175 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/single_driver_all_corners_detailed_analysis.py (1256 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/single_driver_detailed_laptime_analysis.py (1534 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/special_incident_reports.py (1521 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/analyzer/two_driver_telemetry_comparison_fixed.py (1333 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: CLI_modules/cli/core/function_mapper.py (8208 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: core/gui_i18n.py (3337 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: core/openf1_exact_generators.py (1744 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: core/workspace_serializer.py (2205 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: f1_analysis_modular_main.py (2125 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: f1t_gui_main.py (2802 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/base/universal_analysis_mdi_base.py (1386 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/base/universal_chart_widget_base.py (1313 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/diagnostics/objgraph_window.py (1582 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/driver_race/detailed_lap_analysis/driverlap_analysis_chart_widget.py (2197 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/driver_race/detailed_lap_analysis/driverlap_analysis_mdi.py (1684 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/driver_race/lap_box_plot_analysis/lap_box_plot_analysis_mdi.py (1720 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/acceleration_analysis/acceleration_analysis_chart_widget.py (1749 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/acceleration_analysis/acceleration_analysis_mdi.py (2076 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/brake_analysis/brake_analysis_chart_widget.py (1762 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/brake_analysis/brake_analysis_mdi.py (2067 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/distancediff_analysis/distancediff_analysis_chart_widget.py (1775 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/distancediff_analysis/distancediff_analysis_mdi.py (2029 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/gear_analysis/gear_analysis_chart_widget.py (1696 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/gear_analysis/gear_analysis_mdi.py (1992 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/lap_box_plot/lap_box_plot_analysis_mdi.py (1604 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/rpm_analysis/rpm_analysis_chart_widget.py (1689 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/rpm_analysis/rpm_analysis_mdi.py (2065 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/speed_analysis/speed_analysis_chart_widget.py (1834 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/speed_analysis/speed_analysis_mdi.py (2055 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/speeddiff_analysis/speeddiff_analysis_chart_widget.py (1839 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/speeddiff_analysis/speeddiff_analysis_mdi.py (2061 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/telemetry_data_loader_base.py (1837 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/Throttle_analysis/throttle_analysis_chart_widget.py (1741 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/Throttle_analysis/throttle_analysis_mdi.py (1962 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/Throttle_analysis/throttle_box_plot_analysis/throttle_box_plot_analysis_mdi.py (1735 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/timediff_analysis/timediff_analysis_chart_widget.py (1791 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/lap_analysis/timediff_analysis/timediff_analysis_mdi.py (2004 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/core/data_manager.py (2482 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/brake_trace.py (1710 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/chase_strategy.py (3869 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/driver_strategy.py (3789 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/drs_trace.py (1714 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/gear_trace.py (1703 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/ranking_tower.py (1726 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/rpm_trace.py (1708 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/sector_comparison.py (1315 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/sf_percentage_chart.py (1384 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/speed_trace.py (1734 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/live_timing/live_timing_modules/throttle_trace.py (1706 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/long_run_analysis/long_run_mdi.py (2691 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/race_analysis/accident/accident_analysis_complete.py (3940 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/race_analysis/accident/accident_analysis_mdi.py (2715 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/race_analysis/pitstop/pitstop_analysis_mdi.py (2946 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/race_analysis/track/track_analysis_mdi.py (1414 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/race_analysis/track/track_analysis_module.py (1565 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/race_analysis/track/track_map_widget.py (2412 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/race_analysis/track_map/historical_track_map_mdi.py (1896 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/telemetry_analysis_mdi.py (2041 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: modules/gui/universal_chart_widget.py (2559 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: strategy_simulator/core/race_simulator.py (2253 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: strategy_simulator/gui/main_window-XM0152.py (2366 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: strategy_simulator/gui/main_window.py (2773 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: strategy_simulator/gui/results_tabs/full_race_tab.py (1319 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: strategy_simulator/gui/results_tabs/safety_car_tab.py (1328 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: strategy_simulator/gui/widgets/strategy_report_generator.py (1605 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: windows/dialogs/window_settings_dialog.py (1630 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: windows/managers/analysis_module_creator.py (2134 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: windows/managers/telemetry_window_creator.py (1417 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: windows/widgets/popout_subwindow.py (2077 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/6fb8255e-6892-4057-b677-5cf1f940e397/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/6fb8255e-6892-4057-b677-5cf1f940e397/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.