Repository Analysis

Ulauncher/Ulauncher

Feature rich application Launcher for Linux

29.9 Moderate AI signal View on GitHub

Analysis Overview

This report presents the forensic synthetic code analysis of Ulauncher/Ulauncher, a Python project with 4,484 GitHub stars. SynthScan v2.0 examined 18,197 lines of code across 237 source files, recording 474 pattern matches distributed across 14 syntactic categories. The overall adjusted score of 29.9 places this repository in the Moderate AI signal band.

The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).

29.9
Adjusted Score
29.9
Raw Score
100%
Time Factor
2026-07-13
Last Push
4.5K
Stars
Python
Language
18.2K
Lines of Code
237
Files
474
Pattern Hits
2026-07-14
Scan Date
0.02
HC Hit Rate

What These Metrics Mean

Adjusted Score
Primary synthetic code indicator. Raw score normalised per 1,000 lines of code and multiplied by the temporal discount factor. This is the definitive comparative metric — use it to rank repositories by AI authorship density.
Raw Score
The unmodified sum of all severity-weighted, context-multiplied pattern match scores before temporal discounting. Reflects the absolute signal strength independent of when the repository was last active.
Time Factor
The temporal discount multiplier (0–100%) applied to the raw score. Repositories last updated before ChatGPT's launch (Nov 2022) receive a 5% factor. Full signal is only assigned to repositories active in the post-adoption era (Jan 2024+).
Pattern Hits
Total count of individual pattern matches across all files and categories. A high hit count with a low score may indicate a very large codebase with isolated AI snippets; a low count with a high score indicates dense, concentrated AI signatures.
HC Hit Rate
High+Critical pattern hits per file, averaged across the repository. This orthogonal signal catches repositories where a few files are densely packed with high-severity AI tells — a strong indicator even when the normalised score appears moderate due to codebase size.
Lines of Code / Files
Total lines and files analysed. The scanner examines 94 file extensions. These denominators are used to normalise the score, enabling fair comparison between repositories of vastly different sizes.

Score History

This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.

Severity Breakdown

Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.

CRITICAL 0HIGH 4MEDIUM 11LOW 459

Directory Score Breakdown

This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.

Pattern Findings

The scanner identified 474 distinct pattern matches across 14 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.

Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.

Hyper-Verbose Identifiers202 hits · 233 pts
SeverityFileLineSnippetContext
LOWtests/test_core.py18 def test_streamed_render_stamps_query_and_pick(self, mocker: MockerFixture) -> None:CODE
LOWtests/test_core.py34 def test_activating_drops_pending_stream_paint(self, mocker: MockerFixture) -> None:CODE
LOWtests/test_bin_ulauncher.py31def test_legacy_terminal_flags_exit_without_python(flag: str, hint: str) -> None:CODE
LOWtests/test_bin_ulauncher.py47def test_legacy_rewrite_flags_substitute_and_warn(legacy: str, replacement: str, tmp_path: Path) -> None:CODE
LOWtests/test_bin_ulauncher.py76def test_fast_path_execs_gapplication(tmp_path: Path, argv: list[str], expected_lines: list[str]) -> None:CODE
LOWtests/test_bin_ulauncher.py95def test_fast_path_defers_to_python(tmp_path: Path, argv: list[str]) -> None:CODE
LOWtests/test_cli.py74 def test_parse_command_aliases(CODE
LOWtests/test_cli.py101 def test_run_command_dispatches_handler_with_expected_bootstrap_mode(CODE
LOWtests/test_cli.py128 def test_run_command_warns_when_verbose_set_on_runtimeless_command(CODE
LOWtests/test_cli.py141 def test_groups_top_level_commands_in_help_output(self) -> None:CODE
LOWtests/test_cli.py159 def test_subcommand_help_does_not_repeat_top_level_command_groups(self, capsys: pytest.CaptureFixture[str]) -> None:CODE
LOWtests/test_bootstrap_flags.py18 def test_first_run_flags_are_snapshotted_at_import(self, monkeypatch: pytest.MonkeyPatch) -> None:CODE
LOWtests/test_bootstrap_flags.py38 def test_first_run_flags_capture_config_and_state_independently(self, monkeypatch: pytest.MonkeyPatch) -> None:CODE
LOWtests/ui/test_result_widget.py39 def test_wrap__name_and_description_labels_wrap_instead_of_ellipsizing(self) -> None:CODE
LOWtests/ui/test_result_widget.py51 def test_wrap__defaults_to_single_ellipsized_line(self) -> None:CODE
LOWtests/ui/test_result_widget.py63 def test_wrap__highlighting_is_skipped(self) -> None:CODE
LOWtests/ui/test_results_view.py92 def test_out_of_bounds_select_falls_back_to_first(self, view: ResultsView, items: list[MagicMock]) -> None:CODE
LOWtests/ui/test_results_view.py99 def test_go_up_from_start_wraps_to_last(self, view: ResultsView, items: list[MagicMock]) -> None:CODE
LOWtests/ui/test_results_view.py113 def test_go_down_from_last_wraps_to_first(self, view: ResultsView, items: list[MagicMock]) -> None:CODE
LOWtests/ui/test_results_view.py118 def test_navigation_on_empty_is_noop(self) -> None:CODE
LOWtests/ui/test_results_view.py134 def test_select_marks_user_selected(self, view: ResultsView) -> None:CODE
LOWtests/ui/test_results_view.py140 def test_apply_selection_uses_default_name_without_marking_user_selected(self, view: ResultsView) -> None:CODE
LOWtests/ui/test_results_view.py146 def test_apply_selection_preserves_user_pick(self, view: ResultsView) -> None:CODE
LOWtests/ui/test_results_view.py155 def test_apply_selection_falls_back_when_user_pick_gone(self, view: ResultsView) -> None:CODE
LOWtests/ui/test_results_view.py185 def test_replace_preserves_user_pick_within_same_query(self, view: ResultsView) -> None:CODE
LOWtests/ui/test_results_view.py194 def test_append_grows_list_and_keeps_selection(self, view: ResultsView) -> None:CODE
LOWtests/ui/test_results_view.py203 def test_new_query_resets_user_selection(self, view: ResultsView) -> None:CODE
LOWtests/ui/preferences/utils/test_ext_utils.py5 def test_returns_text_unchanged_when_no_code_tags(self) -> None:CODE
LOWtests/ui/preferences/utils/test_ext_utils.py9 def test_converts_code_tags_to_pango_markup(self) -> None:CODE
LOWtests/ui/preferences/utils/test_ext_utils.py14 def test_converts_code_tags_with_attributes_to_pango_markup(self) -> None:CODE
LOWtests/modes/extensions/test_extension_runtime.py44 def test_run__basic_execution__is_called(self, subprocess_launcher: MagicMock) -> None:CODE
LOWtests/modes/extensions/test_extension_runtime.py75 def test_handle_exit__signaled(self) -> None:CODE
LOWtests/modes/extensions/test_extension_runtime.py85 def test_handle_exit__rapid_exit(self, time: MagicMock) -> None:CODE
LOWtests/modes/extensions/test_extension_runtime.py140 def test_kill__noop_when_already_reaped(self) -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py36def test_handle_query__transitioning_extension_waits(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py55def test_handle_query__loading_timeout_shows_empty(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py74def test_handle_query__unknown_keyword_shows_message(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py88def test_errored__while_loading_shows_failure(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py105def test_errored__while_not_loading_drops_pending_callback() -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py117def test_errored__ignores_other_extensions() -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py138def test_started__reruns_query_for_active_extension(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py151def test_started__ignores_other_extensions(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_mode.py163def test_handle_response__streamed_batches_keep_callback_until_final() -> None:CODE
LOWtests/modes/extensions/test_extension_service.py11def test_preview_is_never_manageable_even_inside_user_extensions_dir(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_service.py17def test_save_user_preferences__saves_and_sends_changed_values(mocker: MockerFixture) -> None:CODE
LOWtests/modes/extensions/test_extension_dependencies.py41def test_get_dependencies_path(CODE
LOWtests/modes/extensions/test_extension_dependencies.py80def test_install_without_requirements(CODE
LOWtests/modes/extensions/test_extension_dependencies.py98def test_install_failure_maps_to_dependency_error(CODE
LOWtests/modes/extensions/test_extension_manifest.py22 def test_open__manifest_file__is_read(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py27 def test_validate__name_empty__exception_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py32 def test_validate__valid_manifest__no_exceptions_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py36 def test_validate__prefs_incorrect_type__exception_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py41 def test_validate__type_kw_empty_name__exception_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py46 def test_validate__raises_error_if_empty_default_value_for_keyword(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py53 def test_validate__doesnt_raise_if_empty_default_value_for_non_keyword(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py57 def test_validate__trigger_missing_name__exception_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py62 def test_validate__pref_missing_name__exception_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py67 def test_validate__min_on_non_number__exception_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py74 def test_validate__max_on_non_number__exception_raised(self) -> None:CODE
LOWtests/modes/extensions/test_extension_manifest.py81 def test_validate__checkbox_bool_default__no_exception(self) -> None:CODE
142 more matches not shown…
Unused Imports145 hits · 144 pts
SeverityFileLineSnippetContext
LOWsetup.py2CODE
LOWtests/test_core.py1CODE
LOWtests/test_bin_ulauncher.py1CODE
LOWtests/test_cli.py1CODE
LOWtests/test_bootstrap_flags.py1CODE
LOWtests/ui/test_result_widget.py40CODE
LOWtests/ui/test_result_widget.py52CODE
LOWtests/ui/test_result_widget.py64CODE
LOWtests/ui/test_results_view.py1CODE
LOWtests/ui/test_results_view.py4CODE
LOWtests/modes/extensions/test_extension_mode.py1CODE
LOWtests/modes/extensions/test_extension_dependencies.py1CODE
LOWtests/modes/extensions/test_extension_manifest.py1CODE
LOWtests/modes/extensions/test_extension_remote.py1CODE
LOWtests/modes/extensions/test_extension/main.py1CODE
LOWtests/modes/calc/test_calc_mode.py1CODE
LOWtests/modes/file_browser/test_file_browser_mode.py1CODE
LOWtests/modes/shortcuts/test_shortcut_mode.py1CODE
LOWtests/modes/shortcuts/test_shortcuts.py1CODE
LOWtests/modes/shortcuts/test_run_script.py1CODE
LOWtests/modes/apps/test_app_rankings.py1CODE
LOWtests/modes/apps/test_app_result.py1CODE
LOWtests/utils/test_subprocess_utils.py1CODE
LOWtests/utils/test_socket_msg_controller.py1CODE
LOWtests/internals/test_result_buffer.py1CODE
LOWtests/internals/test_effect_utils.py1CODE
LOWtests/api/test_extension.py1CODE
LOWtests/data/test_json_key_value_conf.py1CODE
LOWtests/data/test_json_conf.py1CODE
LOWulauncher/init_helpers.py1CODE
LOWulauncher/__init__.py4CODE
LOWulauncher/core.py1CODE
LOWulauncher/gi.py12CODE
LOWulauncher/gi.py25CODE
LOWulauncher/ui/results_view.py1CODE
LOWulauncher/ui/hotkey_dialog.py1CODE
LOWulauncher/ui/load_icon_surface.py1CODE
LOWulauncher/ui/ulauncher_window.py1CODE
LOWulauncher/ui/app.py1CODE
LOWulauncher/ui/result_widget.py1CODE
LOWulauncher/ui/get_icon_path.py1CODE
LOWulauncher/ui/preferences/preferences_window.py1CODE
LOWulauncher/ui/preferences/utils/ext_utils.py1CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py1CODE
LOWulauncher/ui/preferences/utils/sidebar_layout.py1CODE
LOWulauncher/ui/preferences/views/shortcuts.py1CODE
LOWulauncher/ui/preferences/views/preferences.py1CODE
LOWulauncher/ui/preferences/views/__init__.py1CODE
LOWulauncher/ui/preferences/views/about.py1CODE
LOWulauncher/ui/preferences/views/extensions.py1CODE
LOWulauncher/ui/preferences/views/help.py1CODE
LOWulauncher/ui/helpers/tray_icon.py4CODE
LOWulauncher/ui/helpers/monitor.py1CODE
LOWulauncher/ui/helpers/system_theme.py1CODE
LOWulauncher/ui/helpers/theme.py1CODE
LOWulauncher/ui/helpers/text_highlighter.py1CODE
LOWulauncher/ui/helpers/hotkey_controller.py1CODE
LOWulauncher/modes/mode.py1CODE
LOWulauncher/modes/extensions/extension_registry.py1CODE
LOWulauncher/modes/extensions/extension_remote.py1CODE
85 more matches not shown…
Modern Structural Boilerplate82 hits · 84 pts
SeverityFileLineSnippetContext
LOWulauncher/__init__.py6__all__ = ["version"]CODE
LOWulauncher/core.py22logger = logging.getLogger(__name__)CODE
LOWulauncher/core.py100 def set_query(self, query_str: str, callback: ResultsCallback) -> None:CODE
LOWulauncher/gi.py31__all__ = [CODE
LOWulauncher/gi.py192def _setup_gio_unix() -> None:CODE
LOWulauncher/ui/results_view.py17logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/results_view.py47 def set_max_height(self, height: int) -> None:CODE
LOWulauncher/ui/hotkey_dialog.py9logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/hotkey_dialog.py43 def set_hotkey(self, key_name: str = "") -> None:CODE
LOWulauncher/ui/load_icon_surface.py13logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/ulauncher_window.py26logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/ulauncher_window.py403 def set_input(self, query_str: str) -> None:CODE
LOWulauncher/ui/app.py25logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/app.py59 def set_query(self, value: str, update_input: bool = True) -> None:CODE
LOWulauncher/ui/result_widget.py17logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/result_widget.py104 def set_index(self, index: int) -> None:CODE
LOWulauncher/ui/get_icon_path.py11logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/preferences/preferences_window.py109 def _setup_keybindings(self) -> None:CODE
LOWulauncher/ui/preferences/preferences_window.py125 def _setup_custom_styling(self) -> None:CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py17logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py106 def update_ui() -> None:CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py157 def update_ui() -> None:CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py182 def update_ui() -> None:CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py201 def update_extension(self, ext: ExtensionRecord, callback: Callable[[], None]) -> None:CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py209 def update_async() -> None:CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py213 def update_ui() -> None:CODE
LOWulauncher/ui/preferences/utils/sidebar_layout.py81 def set_items(self, items: Sequence[SidebarItem], active_item_id: str | None = None) -> None:CODE
LOWulauncher/ui/preferences/utils/sidebar_layout.py118 def set_empty_placeholder_builder(self, builder: Callable[[], Gtk.Widget] | None) -> None:CODE
LOWulauncher/ui/preferences/utils/sidebar_layout.py253 def set_content(self, widget: Gtk.Widget) -> None:CODE
LOWulauncher/ui/preferences/views/shortcuts.py361 def _update_icon_button(self) -> None:CODE
LOWulauncher/ui/preferences/views/preferences.py16logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/preferences/views/__init__.py78 def set_text(self, text: str) -> None:CODE
LOWulauncher/ui/preferences/views/extensions.py28logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/helpers/tray_icon.py20logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/helpers/monitor.py9logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/helpers/theme.py11logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/helpers/hotkey_controller.py14logger = logging.getLogger(__name__)CODE
LOWulauncher/ui/helpers/hotkey_controller.py21def _set_hotkey(hotkey: str) -> None:CODE
LOWulauncher/ui/helpers/layer_shell.py46def set_vertical_position(window: Gtk.Window, pos_y: float) -> None:CODE
LOWulauncher/modes/extensions/extension_registry.py15logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/extensions/extension_remote.py24logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/extensions/extension_manifest.py11logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/extensions/extension_mode.py22logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/extensions/extension_runtime.py24logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/extensions/extension_record.py51logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/extensions/extension_service.py24logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/extensions/extension_dependencies.py10logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/calc/calc_mode.py57logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/file_browser/file_browser_mode.py18logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/file_browser/open_with.py8logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/shortcuts/run_script.py9logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/shortcuts/shortcut_mode.py14logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/apps/app_result.py12logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/apps/launch_app.py14logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/apps/try_raise_app.py7logger = logging.getLogger(__name__)CODE
LOWulauncher/modes/apps/app_mode.py17logger = logging.getLogger(__name__)CODE
LOWulauncher/utils/dbus.py11logger = logging.getLogger(__name__)CODE
LOWulauncher/utils/launch_detached.py10logger = logging.getLogger(__name__)CODE
LOWulauncher/utils/v5_killer.py7logger = logging.getLogger(__name__)CODE
LOWulauncher/utils/environment.py16logger = logging.getLogger(__name__)CODE
22 more matches not shown…
Deep Nesting22 hits · 22 pts
SeverityFileLineSnippetContext
LOWulauncher/core.py64CODE
LOWulauncher/core.py241CODE
LOWulauncher/core.py251CODE
LOWulauncher/ui/app.py298CODE
LOWulauncher/ui/result_widget.py132CODE
LOWulauncher/ui/preferences/utils/ext_handlers.py247CODE
LOWulauncher/ui/preferences/views/extensions.py568CODE
LOWulauncher/ui/helpers/hotkey_controller.py21CODE
LOWulauncher/modes/extensions/extension_remote.py303CODE
LOWulauncher/modes/extensions/extension_manifest.py47CODE
LOWulauncher/modes/extensions/extension_finder.py46CODE
LOWulauncher/modes/extensions/extension_mode.py214CODE
LOWulauncher/modes/extensions/extension_runtime.py145CODE
LOWulauncher/modes/extensions/extension_service.py73CODE
LOWulauncher/modes/extensions/extension_service.py85CODE
LOWulauncher/modes/file_browser/file_browser_mode.py51CODE
LOWulauncher/modes/file_browser/file_browser_mode.py97CODE
LOWulauncher/modes/apps/launch_app.py47CODE
LOWulauncher/modes/apps/try_raise_app.py10CODE
LOWulauncher/utils/migrate.py91CODE
LOWulauncher/internals/effect_utils.py43CODE
LOWulauncher/data/json_key_value_conf.py18CODE
Self-Referential Comments6 hits · 18 pts
SeverityFileLineSnippetContext
MEDIUMulauncher/ui/preferences/preferences_window.py43 # Create the main UICOMMENT
MEDIUMulauncher/ui/preferences/preferences_window.py53 # Create main containerCOMMENT
MEDIUMulauncher/ui/preferences/views/preferences.py33 # Create main container - centers on wide screens, fills on narrow screensCOMMENT
MEDIUMulauncher/ui/preferences/views/extensions.py234 # Create a vertical box for authors and updated dateCOMMENT
MEDIUMulauncher/ui/preferences/views/help.py65 # Create a horizontal box for each linkCOMMENT
MEDIUMulauncher/utils/untar.py9# This function is the same as Path.is_relative_to in 3.9, but we can't use that yetCOMMENT
Cross-File Repetition3 hits · 15 pts
SeverityFileLineSnippetContext
HIGHtests/modes/calc/test_calc_mode.py0helper to collect results from callback-based handle_query.STRING
HIGHtests/modes/file_browser/test_file_browser_mode.py0helper to collect results from callback-based handle_query.STRING
HIGHtests/modes/shortcuts/test_shortcut_mode.py0helper to collect results from callback-based handle_query.STRING
Decorative Section Separators4 hits · 12 pts
SeverityFileLineSnippetContext
MEDIUMulauncher/gi.py37# ─── GioUnix compatibility namespace ──────────────────────────────────────────COMMENT
MEDIUMulauncher/gi.py95# ─── DesktopAppInfo wrapper ────────────────────────────────────────────────────COMMENT
MEDIUMulauncher/gi.py189# ─── Deferred setup functions ──────────────────────────────────────────────────COMMENT
MEDIUMulauncher/gi.py227# ─── Lazy loader (PEP 562) ────────────────────────────────────────────────────COMMENT
Cross-Language Confusion1 hit · 5 pts
SeverityFileLineSnippetContext
HIGHtests/data/test_json_conf.py45 assert json_stringify(conf, value_blacklist=[]) == '{"a": null, "b": [], "c": {}, "d": 1}'CODE
Over-Commented Block3 hits · 3 pts
SeverityFileLineSnippetContext
LOWcliff.toml21filter_commits = trueCOMMENT
LOWulauncher/gi.py41# * GioUnix was originally a namespace for aliases to Unix-specific functionality in the Gio namespace.COMMENT
LOWulauncher/gi.py61#COMMENT
Dead Code1 hit · 2 pts
SeverityFileLineSnippetContext
MEDIUMtests/api/test_extension.py89CODE
Slop Phrases2 hits · 2 pts
SeverityFileLineSnippetContext
LOW.github/workflows/draft-release.yml33 # make sure to run make sdist after make deb because make deb overwrites the tarballCOMMENT
LOWulauncher/utils/ewmh.py39 When a property is written, don't forget to really send the notification bySTRING
Redundant / Tautological Comments1 hit · 2 pts
SeverityFileLineSnippetContext
LOWulauncher/utils/migrate.py72 # Check if already migratedCOMMENT
Excessive Try-Catch Wrapping1 hit · 1 pts
SeverityFileLineSnippetContext
LOWulauncher/core.py176 except Exception:CODE
AI Structural Patterns1 hit · 1 pts
SeverityFileLineSnippetContext
LOWulauncher/internals/result.py38CODE