Graphical client for the Soulseek peer-to-peer network
This report presents the forensic synthetic code analysis of nicotine-plus/nicotine-plus, a Python project with 2,984 GitHub stars. SynthScan v2.0 examined 72,344 lines of code across 209 source files, recording 667 pattern matches distributed across 13 syntactic categories. The overall adjusted score of 10.2 places this repository in the Low 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).
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.
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.
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.
The scanner identified 667 distinct pattern matches across 13 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.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | pynicotine/chatrooms.py | 222 | def request_add_room_operator(self, room, username): | CODE |
| LOW⚡ | pynicotine/chatrooms.py | 225 | def request_remove_room_member(self, room, username): | CODE |
| LOW⚡ | pynicotine/chatrooms.py | 228 | def request_remove_room_operator(self, room, username): | CODE |
| LOW⚡ | pynicotine/chatrooms.py | 245 | def request_cancel_room_ownership(self, room): | CODE |
| LOW⚡ | pynicotine/chatrooms.py | 252 | def request_cancel_room_membership(self, room): | CODE |
| LOW⚡ | pynicotine/chatrooms.py | 259 | def request_enable_room_invitations(self, enabled): | CODE |
| LOW | pynicotine/chatrooms.py | 459 | def _room_operatorship_granted(self, msg): | CODE |
| LOW | pynicotine/chatrooms.py | 472 | def _room_operatorship_revoked(self, msg): | CODE |
| LOW | pynicotine/logfacility.py | 188 | def _close_inactive_log_files(self): | CODE |
| LOW | pynicotine/transfers.py | 183 | def _load_legacy_transfers_file(transfers_file): | CODE |
| LOW | pynicotine/transfers.py | 436 | def _update_transfer_progress(self, transfer, stat_id, current_byte_offset=None, speed=None): | CODE |
| LOW | pynicotine/transfers.py | 500 | def _enqueue_limited_transfers(self, username): | CODE |
| LOW⚡ | pynicotine/interests.py | 121 | def request_global_recommendations(self): | CODE |
| LOW⚡ | pynicotine/interests.py | 124 | def request_item_recommendations(self, item): | CODE |
| LOW⚡ | pynicotine/interests.py | 127 | def request_item_similar_users(self, item): | CODE |
| LOW | pynicotine/nowplaying.py | 115 | def _parse_audioscrobbler_response(self, response_body): | CODE |
| LOW | pynicotine/privatechat.py | 153 | def _private_message_queue_add(self, msg): | CODE |
| LOW | pynicotine/core.py | 300 | def send_message_to_network_thread(self, message: InternalMessage): | CODE |
| LOW⚡ | pynicotine/downloads.py | 682 | def get_default_download_folder(self, username=None): | CODE |
| LOW⚡ | pynicotine/downloads.py | 692 | def get_incomplete_download_folder(self): | CODE |
| LOW | pynicotine/downloads.py | 158 | def _get_transfer_list_file_path(self): | CODE |
| LOW | pynicotine/downloads.py | 195 | def _open_incomplete_transfer(self, transfer): | CODE |
| LOW | pynicotine/downloads.py | 388 | def _enqueue_limited_transfers(self, username): | CODE |
| LOW | pynicotine/downloads.py | 448 | def _folder_downloaded_actions(self, username, folder_path): | CODE |
| LOW | pynicotine/downloads.py | 553 | def _delete_stale_incomplete_downloads(self): | CODE |
| LOW | pynicotine/downloads.py | 605 | def _retry_failed_connection_downloads(self): | CODE |
| LOW | pynicotine/downloads.py | 620 | def _retry_failed_io_downloads(self): | CODE |
| LOW | pynicotine/downloads.py | 739 | def get_complete_download_file_path(self, username, virtual_path, size, download_folder_path=None): | CODE |
| LOW | pynicotine/downloads.py | 763 | def get_incomplete_download_file_path(self, username, virtual_path): | CODE |
| LOW | pynicotine/downloads.py | 785 | def get_current_download_file_path(self, transfer): | CODE |
| LOW | pynicotine/downloads.py | 1007 | def _requested_folder_timeout(self, requested_folder): | CODE |
| LOW | pynicotine/downloads.py | 1034 | def _folder_contents_response(self, msg): | CODE |
| LOW | pynicotine/downloads.py | 1089 | def _transfer_request_downloads(self, msg): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 72 | def public_room_message_notification(self, room, user, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 76 | def search_request_notification(self, searchterm, user, token): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 80 | def distrib_search_notification(self, searchterm, user, token): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 84 | def incoming_private_chat_event(self, user, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 88 | def incoming_private_chat_notification(self, user, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 92 | def incoming_public_chat_event(self, room, user, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 96 | def incoming_public_chat_notification(self, room, user, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 100 | def outgoing_private_chat_event(self, user, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 104 | def outgoing_private_chat_notification(self, user, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 108 | def outgoing_public_chat_event(self, room, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 112 | def outgoing_public_chat_notification(self, room, line): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 116 | def outgoing_global_search_event(self, text): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 120 | def outgoing_room_search_event(self, rooms, text): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 124 | def outgoing_buddy_search_event(self, text): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 128 | def outgoing_user_search_event(self, users, text): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 132 | def outgoing_wishlist_search_event(self, text): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 136 | def user_resolve_notification(self, user, ip_address, port, country): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 140 | def server_connect_notification(self): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 144 | def server_disconnect_notification(self, userchoice): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 148 | def join_chatroom_notification(self, room): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 152 | def leave_chatroom_notification(self, room): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 156 | def user_join_chatroom_notification(self, room, user): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 160 | def user_leave_chatroom_notification(self, room, user): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 164 | def private_room_membership_granted_notification(self, room): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 168 | def private_room_membership_revoked_notification(self, room): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 172 | def private_room_member_added_notification(self, room, user): | CODE |
| LOW⚡ | pynicotine/pluginsystem.py | 176 | def private_room_member_removed_notification(self, room, user): | CODE |
| 365 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pynicotine/portmapper.py | 332 | except Exception as error: | CODE |
| LOW | pynicotine/portmapper.py | 630 | except Exception as natpmp_error: | CODE |
| LOW | pynicotine/portmapper.py | 637 | except Exception as upnp_error: | CODE |
| LOW | pynicotine/portmapper.py | 673 | except Exception as error: | CODE |
| LOW | pynicotine/logfacility.py | 162 | except Exception as error: | CODE |
| LOW | pynicotine/logfacility.py | 251 | except Exception as error: | CODE |
| LOW | pynicotine/logfacility.py | 276 | except Exception as error: | CODE |
| LOW | pynicotine/logfacility.py | 322 | except Exception as error: | CODE |
| MEDIUM | pynicotine/logfacility.py | 171 | def _close_log_file(self, log_file): | CODE |
| LOW | pynicotine/transfers.py | 364 | except Exception as error: | CODE |
| LOW | pynicotine/config.py | 721 | except Exception: | CODE |
| LOW | pynicotine/config.py | 751 | except Exception: | CODE |
| LOW | pynicotine/config.py | 842 | except Exception as error: | CODE |
| LOW | pynicotine/events.py | 270 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 156 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 164 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 180 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 188 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 245 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 301 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 323 | except Exception as error: | CODE |
| LOW | pynicotine/nowplaying.py | 338 | except Exception as error: | CODE |
| LOW | pynicotine/__init__.py | 148 | except Exception as error: | CODE |
| LOW | pynicotine/__init__.py | 158 | except Exception as second_error: | CODE |
| LOW | pynicotine/__init__.py | 207 | except Exception as error: | CODE |
| LOW | pynicotine/core.py | 337 | except Exception as error: | CODE |
| MEDIUM | pynicotine/core.py | 329 | def _check(self): | CODE |
| LOW | pynicotine/downloads.py | 442 | except Exception as error: | CODE |
| LOW | pynicotine/downloads.py | 483 | except Exception as error: | CODE |
| LOW | pynicotine/pluginsystem.py | 347 | except Exception: | CODE |
| LOW | pynicotine/pluginsystem.py | 517 | except Exception as error: | CODE |
| LOW | pynicotine/pluginsystem.py | 542 | except Exception as error: | CODE |
| LOW | pynicotine/pluginsystem.py | 613 | except Exception: | CODE |
| LOW | pynicotine/pluginsystem.py | 723 | except Exception: | CODE |
| LOW | pynicotine/pluginsystem.py | 767 | except Exception: | CODE |
| LOW | pynicotine/pluginsystem.py | 863 | except Exception: | CODE |
| LOW | pynicotine/pluginsystem.py | 1075 | except Exception as error: | CODE |
| LOW | pynicotine/pluginsystem.py | 1104 | except Exception as error: | CODE |
| LOW | pynicotine/userinfo.py | 78 | except Exception: | CODE |
| LOW | pynicotine/userinfo.py | 153 | except Exception as error: | CODE |
| MEDIUM | pynicotine/userinfo.py | 145 | def save_user_picture(file_path, picture_bytes): | CODE |
| LOW | pynicotine/portchecker.py | 30 | except Exception as error: | CODE |
| MEDIUM | pynicotine/portchecker.py | 25 | def _check_status(self, port): | CODE |
| LOW | pynicotine/cli.py | 10 | except Exception as curses_error: | CODE |
| LOW | pynicotine/cli.py | 47 | except Exception: | CODE |
| LOW | pynicotine/cli.py | 124 | except Exception: | CODE |
| LOW | pynicotine/utils.py | 490 | except Exception as error: | CODE |
| LOW | pynicotine/utils.py | 512 | except Exception: | CODE |
| LOW | pynicotine/utils.py | 597 | except Exception as error: | CODE |
| LOW | pynicotine/utils.py | 643 | except Exception as error: | CODE |
| LOW | pynicotine/utils.py | 668 | except Exception as error: | CODE |
| LOW | pynicotine/utils.py | 696 | except Exception as error: | CODE |
| LOW | pynicotine/utils.py | 716 | except Exception as error: | CODE |
| LOW | pynicotine/utils.py | 727 | except Exception as second_error: | CODE |
| MEDIUM | pynicotine/utils.py | 650 | def load_file(file_path, load_func, use_old_file=False): | CODE |
| LOW | pynicotine/slskmessages.py | 3304 | except Exception as error: | CODE |
| MEDIUM | pynicotine/slskmessages.py | 3288 | def _make_shares_list(self, share_groups): | CODE |
| MEDIUM | pynicotine/slskproto.py | 685 | def _pack_network_message(msg): | CODE |
| LOW | pynicotine/slskproto.py | 690 | except Exception: | CODE |
| LOW | pynicotine/slskproto.py | 720 | except Exception as error: | CODE |
| 31 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | setup.py | 11 | CODE | |
| LOW | build-aux/macos/setup.py | 143 | CODE | |
| LOW | build-aux/appimage/setup.py | 143 | CODE | |
| LOW | build-aux/windows/setup.py | 143 | CODE | |
| LOW | pynicotine/portmapper.py | 111 | CODE | |
| LOW | pynicotine/portmapper.py | 281 | CODE | |
| LOW | pynicotine/transfers.py | 262 | CODE | |
| LOW | pynicotine/config.py | 615 | CODE | |
| LOW | pynicotine/config.py | 693 | CODE | |
| LOW | pynicotine/users.py | 329 | CODE | |
| LOW | pynicotine/nowplaying.py | 49 | CODE | |
| LOW | pynicotine/privatechat.py | 242 | CODE | |
| LOW | pynicotine/downloads.py | 553 | CODE | |
| LOW | pynicotine/downloads.py | 925 | CODE | |
| LOW | pynicotine/pluginsystem.py | 328 | CODE | |
| LOW | pynicotine/pluginsystem.py | 473 | CODE | |
| LOW | pynicotine/pluginsystem.py | 556 | CODE | |
| LOW | pynicotine/pluginsystem.py | 653 | CODE | |
| LOW | pynicotine/pluginsystem.py | 731 | CODE | |
| LOW | pynicotine/pluginsystem.py | 839 | CODE | |
| LOW | pynicotine/pluginsystem.py | 985 | CODE | |
| LOW | pynicotine/utils.py | 522 | CODE | |
| LOW | pynicotine/utils.py | 650 | CODE | |
| LOW | pynicotine/slskmessages.py | 3222 | CODE | |
| LOW | pynicotine/search.py | 257 | CODE | |
| LOW | pynicotine/search.py | 388 | CODE | |
| LOW | pynicotine/search.py | 460 | CODE | |
| LOW | pynicotine/search.py | 827 | CODE | |
| LOW | pynicotine/slskproto.py | 826 | CODE | |
| LOW | pynicotine/slskproto.py | 1114 | CODE | |
| LOW | pynicotine/slskproto.py | 1335 | CODE | |
| LOW | pynicotine/slskproto.py | 2367 | CODE | |
| LOW | pynicotine/slskproto.py | 2554 | CODE | |
| LOW | pynicotine/slskproto.py | 2738 | CODE | |
| LOW | pynicotine/i18n.py | 39 | CODE | |
| LOW | pynicotine/uploads.py | 561 | CODE | |
| LOW | pynicotine/uploads.py | 1274 | CODE | |
| LOW | pynicotine/userbrowse.py | 197 | CODE | |
| LOW | pynicotine/userbrowse.py | 293 | CODE | |
| LOW | pynicotine/shares.py | 553 | CODE | |
| LOW | pynicotine/shares.py | 847 | CODE | |
| LOW | pynicotine/shares.py | 933 | CODE | |
| LOW | pynicotine/shares.py | 1258 | CODE | |
| LOW | pynicotine/plugins/core_commands/__init__.py | 600 | CODE | |
| LOW | pynicotine/external/tinytag.py | 310 | CODE | |
| LOW | pynicotine/external/tinytag.py | 373 | CODE | |
| LOW | pynicotine/external/tinytag.py | 416 | CODE | |
| LOW | pynicotine/external/tinytag.py | 544 | CODE | |
| LOW | pynicotine/external/tinytag.py | 658 | CODE | |
| LOW | pynicotine/external/tinytag.py | 923 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1127 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1241 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1349 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1427 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1556 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1633 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1770 | CODE | |
| LOW | pynicotine/external/tinytag.py | 1885 | CODE | |
| LOW | pynicotine/gtkgui/transfers.py | 410 | CODE | |
| LOW | pynicotine/gtkgui/transfers.py | 536 | CODE | |
| 38 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pynicotine/portmapper.py | 695 | # Check if we want to do a port mapping | COMMENT |
| LOW | pynicotine/transfers.py | 212 | # Check if a dictionary is represented in string format | COMMENT |
| LOW | pynicotine/config.py | 605 | # Check if we have specified a username or password | COMMENT |
| LOW | pynicotine/config.py | 702 | # Check if config section exists in defaults | COMMENT |
| LOW | pynicotine/config.py | 706 | # Check if config option exists in defaults | COMMENT |
| LOW | pynicotine/config.py | 773 | # Check if server value is valid | COMMENT |
| LOW | pynicotine/config.py | 779 | # Check if port range value is valid | COMMENT |
| LOW⚡ | pynicotine/downloads.py | 675 | # Check if a custom download location was specified | COMMENT |
| LOW⚡ | pynicotine/downloads.py | 686 | # Check if username subfolders should be created for downloads | COMMENT |
| LOW | pynicotine/downloads.py | 1134 | # Check if download exists in our default download folder | COMMENT |
| LOW | pynicotine/cli.py | 88 | # Check if custom prompt is active | COMMENT |
| LOW | pynicotine/search.py | 664 | # Check if file path contains phrase excluded from the search network | COMMENT |
| LOW | pynicotine/slskproto.py | 316 | # Set IP_BIND_ADDRESS_NO_PORT to avoid reserving an ephemeral port in bind(), | COMMENT |
| LOW | pynicotine/slskproto.py | 798 | # Check if there's already a connection for the specified username | COMMENT |
| LOW | pynicotine/slskproto.py | 803 | # Check if we have a pending PeerInit message (currently requesting user IP address) | COMMENT |
| LOW | pynicotine/uploads.py | 111 | # Check if queued uploads can be started every 10 seconds | COMMENT |
| LOW | pynicotine/shares.py | 535 | # Check if file is marked as hidden on Windows | COMMENT |
| LOW | pynicotine/shares.py | 1037 | # Check if virtual share name is already in use | COMMENT |
| LOW | pynicotine/gtkgui/application.py | 930 | # Check if exception occurred in a plugin | COMMENT |
| LOW | pynicotine/gtkgui/widgets/trayicon.py | 564 | # Check if custom icons exist | COMMENT |
| LOW | pynicotine/gtkgui/widgets/trayicon.py | 569 | # Check if local icons exist | COMMENT |
| LOW | pynicotine/gtkgui/widgets/iconnotebook.py | 711 | # Check if tab was removed before timer expired | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| CRITICAL | pynicotine/gtkgui/privatechat.py | 466 | self.chats.window.application.chat_history.remove_user(self.user) | CODE |
| CRITICAL | pynicotine/gtkgui/privatechat.py | 567 | self.chats.window.application.chat_history.update_user(username, message) | CODE |
| CRITICAL | pynicotine/gtkgui/dialogs/wishlist.py | 433 | for tab in self.application.window.search.pages.values(): | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | build-aux/macos/testrun.py | 0 | verify the packaged application starts and keeps running. | STRING |
| HIGH | build-aux/appimage/testrun.py | 0 | verify the packaged application starts and keeps running. | STRING |
| HIGH | build-aux/windows/testrun.py | 0 | verify the packaged application starts and keeps running. | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | pynicotine/portmapper.py | 377 | # Create a UDP socket and set its timeout | COMMENT |
| MEDIUM | pynicotine/slskmessages.py | 26 | # This module contains message classes, that networking and UI thread | COMMENT |
| MEDIUM | pynicotine/slskproto.py | 656 | # Create a UDP socket | COMMENT |
| MEDIUM | pynicotine/gtkgui/widgets/popupmenu.py | 235 | """This function is called before a menu model needs to be manipulated | STRING |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pynicotine/slskmessages.py | 524 | CODE | |
| LOW | pynicotine/slskmessages.py | 3444 | CODE | |
| LOW | pynicotine/search.py | 48 | CODE | |
| LOW | pynicotine/search.py | 312 | CODE | |
| LOW | pynicotine/gtkgui/widgets/combobox.py | 17 | CODE | |
| LOW | pynicotine/gtkgui/widgets/treeview.py | 33 | CODE | |
| LOW | pynicotine/gtkgui/widgets/dialogs.py | 22 | CODE | |
| LOW | pynicotine/gtkgui/widgets/dialogs.py | 524 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pynicotine/core.py | 3 | CODE | |
| LOW | pynicotine/plugins/auto_buddy_rooms/__init__.py | 4 | CODE | |
| LOW | pynicotine/external/tinytag.py | 29 | CODE | |
| LOW | pynicotine/gtkgui/__init__.py | 84 | CODE | |
| LOW | pynicotine/gtkgui/__init__.py | 89 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | pynicotine/external/tinytag.py | 1660 | # ---------------------------------------------- | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pynicotine/downloads.py | 1 | # SPDX-FileCopyrightText: 2020-2026 Nicotine+ Contributors | COMMENT |
| LOW | pynicotine/external/tinytag.py | 1 | # tinytag - an audio file metadata reader | COMMENT |
| LOW | pynicotine/external/tinytag.py | 1661 | # H | <16> The minimum block size (in samples) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pynicotine/core.py | 47 | __all__ = ["Core", "UpdateChecker", "core"] | CODE |
| LOW | pynicotine/external/tinytag.py | 402 | def _set_field(self, fieldname: str, value: Image) -> None: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | pynicotine/utils.py | 392 | If the 'replacement' argument is given, every occurrence of 'placeholder' | STRING |
| LOW | pynicotine/gtkgui/widgets/trayicon.py | 69 | self.show_hide_item = self._create_item("placeholder", self.application.on_window_hide_unhide) | CODE |